我有一个上传控件,我需要像javascript一样验证上传的文件是32位还是64位。
有没有办法做到这一点?
这是使用jquery的简单方法
$('#test').bind('change', function() {
//this.files[0].size gets the size of your file.
alert(this.files[0].size);
});
只需在页面的 head 标签中包含最新的 jquery,如下所示:
<script src="http://code.jquery.com/jquery-latest.js"></script>
下面是它会在上传时显示大小的输入
<input type="file" id="test" />
完整代码如下:
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<input type="file" id="test" />
<script>
$('#test').bind('change', function() {
//this.files[0].size gets the size of your file.
alert(this.files[0].size);
});
</script>
</body>
</html>
现在你可以自己修改它了