jQuery on() 和 live

Posted 个子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery on() 和 live相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://apps.bdimg.com/libs/jquery/1.7.0/jquery.js">
</script>
<script>
$(document).ready(function(){
  $("#div1").on("click",function(){
    $(this).css("background-color","pink");
  });
  $("#div2").live("click",function(){
    $(this).css("background-color","pink");
  });
});
</script>
</head>
<body>

<h4 style="color:green;">该实例演示了如何使用 on() 和 live()。</h4>

<div id="div1" style="border:1px solid black;">这是一些文本。
<p>点击此处,使用 <b>on() 方法来设置背景颜色</b>。</p>
</div><br>

<div id="div2" style="border:1px solid black;">这是一些文本。
<p>点击此处,使用 <b>live() 方法来设置背景颜色</b>。</p>
</div>
<p><b>注意:</b>  live() 方法在 jQuery 版本 1.7 中被废弃,在版本 1.9 中被移除。请使用 on() 方法代替</p>
</body>
</html>

  http://www.runoob.com/jquery/event-on.html

http://api.jquery.com/on/

 

以上是关于jQuery on() 和 live的主要内容,如果未能解决你的问题,请参考以下文章

jquery bind live delegate on

jQuery on() 和 live

jQuery:使用委托时链接 on()

jQuery事件绑定on()bind()live()与delegate() 方法详解

JQuery获取append后的动态元素:live()和on()

jQuery教程 .bind() .live() .delegate() .on()区别详解