此代码应该在IE中 (甚至不在Firefox中测试),但事实并非如此。 我想要的是显示附件的名称。有什么帮助吗?
<html>
<head>
<title>example</title>
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript">
$(document).ready( function(){
$("#attach").after("<input id='fakeAttach' type='button' value='attach a file' />");
$("#fakeAttach").click(function() {
$("#attach").click();
$("#maxSize").after("<div id='temporary'><span id='attachedFile'></span><input id='remove' type='button' value='remove' /></div>");
$('#attach').change(function(){
$("#fakeAttach").attr("disabled","disabled");
$("#attachedFile").html($(this).val());
});
$("#remove").click(function(e){
e.preventDefault();
$("#attach").replaceWith($("#attach").clone());
$("#fakeAttach").attr("disabled","");
$("#temporary").remove();
});
})
});
</script>
</head>
<body>
<input id="attach" type="file" /><span id="maxSize">(less than 1MB)</span>
</body>
</html>
答案 0 :(得分:145)
就像写作一样简单:
$('input[type=file]').val()
无论如何,我建议使用名称或ID属性来选择您的输入。 对于事件,它应该如下所示:
$('input[type=file]').change(function(e){
$in=$(this);
$in.next().html($in.val());
});
答案 1 :(得分:19)
$('input[type=file]').change(function(e){
$(this).parents('.parent-selector').find('.element-to-paste-filename').text(e.target.files[0].name);
});
如果使用C:\fakepath\
,此代码在Google Chrome中的文件名前不会显示.val()
。
答案 2 :(得分:19)
最简单的方法是简单地使用jquery
的以下行,使用此方法,您无法获得/fakepath
废话,直接获取上传的文件:
$('input[type=file]')[0].files[0]; // This gets the file
$('#idOfFileUpload')[0].files[0]; // This gets the file with the specified id
其他一些有用的命令是:
获取文件名称:
$('input[type=file]')[0].files[0].name; // This gets the file name
获取文件类型:
如果我要上传PNG,则会返回image/png
$("#imgUpload")[0].files[0].type
获取文件的大小(以字节为单位):
$("#imgUpload")[0].files[0].size
此外,您不必使用这些命令on('change'
,您可以随时获取值,例如您可能有文件上传,当用户点击upload
时,您只需使用我列出的命令。
答案 3 :(得分:4)
<input onchange="readURL(this);" type="file" name="userfile" />
<img src="" id="blah"/>
<script>
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#blah')
.attr('src', e.target.result)
.width(150).height(200);
};
reader.readAsDataURL(input.files[0]);
//console.log(reader);
//alert(reader.readAsDataURL(input.files[0]));
}
}
</script>
答案 4 :(得分:3)
我使用了正常工作的以下内容。
$('#fileAttached').attr('value', $('#attachment').val())
答案 5 :(得分:2)
//get file input
var $el = $('input[type=file]');
//set the next siblings (the span) text to the input value
$el.next().text( $el.val() );
答案 6 :(得分:1)
添加隐藏的重置按钮:
<input id="Reset1" type="reset" value="reset" class="hidden" />
单击重置按钮以清除输入。
$("#Reset1").click();
答案 7 :(得分:-1)
<input onchange="readURL(this);" type="file" name="userfile" />
<img src="" id="viewImage"/>
<script>
function readURL(fileName) {
if (fileName.files && fileName.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#viewImage')
.attr('src', e.target.result)
.width(150).height(200);
};
reader.readAsDataURL(fileName.files[0]);
}
}
</script>