在mozilla中,当我运行以下jQuery代码时:
var input = $('#handlerxhr1')[0];
$('#upload').click(function() {
alert(input.files[0]);
});
但是在IE中我得到’input.files.0 is undefined’
我究竟做错了什么?
谢谢.
最佳答案
这看起来还不错……
原文链接:https://www.f2er.com/jquery/428519.html$(function() {
var input = $('#handlerxhr1')[0];
$('#upload').click(function() {
alert(input);
});
});
不知道你是不是喜欢这样的事情:
$(function() {
var input = $('#handlerxhr1')[0];
$('#upload').click(function() {
var x = $('input[type=file]:eq(0)');
alert(x);
});
});