上传前使用 JavaScript 检查文件大小
<html>
<head>
<script>
function A()
{
var oas = new ActiveXObject("Scripting.FileSystemObject");
var d = document.a.b.value;
var e = oas.getFile(d);
var f = e.size;
alert(f + " bytes");
}
</script>
</head>
<body>
<form name="a">
<input type="file" name="b">
<input type="button" name="c" value="SIZE" onClick="A();">
</form>
</body>
</html>
此代码不起作用,我单击大小按钮什么也没有发生我检查了 ActiveXObject 不起作用 我正在使用 IE 这是什么原因
<html>
<head>
<script>
function A()
{
var oas = new ActiveXObject("Scripting.FileSystemObject");
var d = document.a.b.value;
var e = oas.getFile(d);
var f = e.size;
alert(f + " bytes");
}
</script>
</head>
<body>
<form name="a">
<input type="file" name="b">
<input type="button" name="c" value="SIZE" onClick="A();">
</form>
</body>
</html>
this code is not working, i click the size button nothing is happen i checked ActiveXObject is not working
i am using IE
what is the reason for this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用
ActiveXObject
尝试使用jQuery
对于下面的 HTML
,请尝试以下操作:
请参阅以下线程:
如何使用 jQuery 检查文件输入大小?
Instead of using
ActiveXObject
try this withjQuery
For the HTML bellow
try the following:
See following thread:
How to check file input size with jQuery?