jquery 中點(diǎn)擊事件$("div").live("click",function(){})和$("div").click(function(){})的區(qū)別
3 回答

元芳怎么了
TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊
live 是綁定事件 舉個(gè)例子 比如我用jquery 直接加載了一段html代碼
原h(huán)tml 為
<div class="test"></div>
js為
$(".test").html("<div id="test">nihao</div>");
$("#test").click(function(){
alert("成功");
});
這個(gè)時(shí)候你點(diǎn)這個(gè)新加的div是沒有效果的
$("#test").live("click",function(){
alert("成功");
});
加了live的話 就能顯示出你要的效果
- 3 回答
- 0 關(guān)注
- 549 瀏覽
添加回答
舉報(bào)
0/150
提交
取消