HTML
<form action="includes/photos.php" id="joinPhotoUploadForm" enctype="multipart/form-data">
<input type="file" name="file" id="file"><br>
</form>
jQuery的
$('div#photoCropContainer').click(function() {
$('input#file').trigger('click');
});
和
$(document).on('change','input#file', function() {
alert('ready to upload');
$('form#joinPhotoUploadForm').submit();
});
当有人点击该事业部@ photoCropContainer它trigers在文件输入点击,显示弹出式窗口,发送文件。 这适用于FF和铬。
在IE9但是我总是弹出,但没有其他答复......
谁能给我任何意见?
谢谢