<script>setTimeout(function(){
$(document).ready(function(){
$("button").click(function(){
$("#a1").remove();
});
});
},22000)</script>代码如上,jQuery加使用定时器设置删除id为a1的div无效呢,求大神支招
1 回答
拉丁的传说
TA贡献1789条经验 获得超8个赞
22 秒之后 该按钮可以点击后可以删除a1
<script>$(document).ready(function(){ setTimeout(function(){ $("button").click(function(){ $("#a1").remove(); }); },22000); });</script>
22秒后 自动删除a1
<script>$(document).ready(function(){ setTimeout(function(){ $("#a1").remove(); },22000); });</script>
原理我不也想讲,因为我本意和楼上一样,希望楼主多看基础。
添加回答
举报
0/150
提交
取消