这是我的代码:
$('#button').click(function () {
$('#file').click();
});
$('#file').change(function (){
$('#form').submit();
});
<form style="display:none;" id="form" method="post" target="upload_target" enctype="multipart/form-data" action="upload">
<input id="file" name="file" id="file" type="file" /><br />
<input type="submit" name="action" value="Upload Image" /><br />
<iframe id="upload_target" name="upload_target" src="" style="width:100;height:100;border:00;"></iframe>
</form>
<span id="button" class="button def">upload</span>
问题出在哪里?
这适用于 Firefox、Chrome 但不适用于 IE