我有隐藏输入类型=文件旁边的图像/徽标:
<form class="image fit" id="theuploadform">
<input title="click me to change logo" type="image" src="images/sample_image.jpg" style="width:inherit;height:inherit"/>
<input type="file" id="userfile" name="userfile" style="display:none" />
</form>
想法是点击图片浏览文件,上传并刷新原始图片。我的代码适用于IE,但不适用于Chrome / FF(
点击处理:
// click for image upload
$("input[type='image']").click(function () {
$("input[id='userfile']").click();
});
这会提示我选择一个文件。在改变时,我想提交表格:
// upload image form
$("input[id='userfile']").on("change", function() {
//alert('here!');
var iframe = $('<iframe name="postiframe" id="postiframe" style="display: none"></iframe>');
$("body").append(iframe);
var form = $('#theuploadform');
form.attr("action", "/UploadHandler.ashx");
form.attr("method", "post");
form.attr("encoding", "multipart/form-data");
form.attr("enctype", "multipart/form-data");
form.attr("target", "postiframe");
form.attr("file", $('#userfile').val());
form.submit();
$("#postiframe").load(function () {
iframeContents = this.contentWindow.document.body.innerHTML;
$("#textarea").html(iframeContents);
var filename = $('#userfile').val().replace(/\\/g, '/');
var fileNameIndex = filename.lastIndexOf("/") + 1;
filename = filename.substr(fileNameIndex);
$("input[type='image']").attr("src", "Uploads/" + filename);
});
//return false;
});
以上所有内容均适用于IE 9+。
我刚发现这篇文章: Upload files using input type="file" field with .change() event not always firing in IE and Chrome 还不确定,但听起来很有意义。
答案 0 :(得分:-1)
解决方案:使用&#34; oninput&#34;而不是&#34; onchange&#34;对于firefox。