为什么我的click()事件不能用,坐等,谢谢!
<head>
[removed]
var i=0;
function test1(){
alert("hello");
i++;
var f=document.getElementById("files1");
if(f!=null){
f.disabled=true;
}
alert(i);
if(i==3){
var f=document.getElementById("files1");
f.disabled=false;
f.id="ss";
alert("what");
f.click();//为什么这里没有执行
alert("why");
}
}
</head>
<body>
<div id="filedt" onclick="test1()">
<input type="file" name="file" id="files1"/>
</div>
</body>
</html>
4 回复
太乱了
我是直接粘贴进来的,怎样弄格式好看点
似乎是你点的file,但是不会执行后面的div的click事件.
看晕了,[removed]和alert(i);这些符号是什么啊!