我有一些 jquery 的问题,它适用于 chrome 和 firefox,但不适用于 IE
编码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js">
</script>
</head>
<body>
<form method='post' name='aform' action='test2.html'>
<input type='file' value='Upload Billede' name='image[fileupload]' /><input type='button' class='upload image[fileupload]' value='Upload Billede' />
</form>
<script type="text/javascript">
$(document).ready(function(){
bind_file_upload();
});
function bind_file_upload()
{
var target_id;
$("[name='image[fileupload]']").change(function(event){
$("[name='aform']").submit();
});
$(".upload").click(function(){
$("[name='image[fileupload]']").click();
});
}
</script>
</body>
</html>
问题是,当我通过浏览按钮直接使用文件控件时,页面提交,但是当我使用自己的上传按钮时,它会触发文件对话框,但是当我选择一个文件并按下打开 jquery 时,权限被拒绝。
我做错了什么。
提前致谢