码迷,mamicode.com
首页 > Web开发 > 详细

jQuery on() 和 live

时间:2017-05-03 13:15:58      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:har   分享   tps   oct   str   charset   set   ora   演示   

<!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

标签:har   分享   tps   oct   str   charset   set   ora   演示   

原文地址:http://www.cnblogs.com/jwlfpzj/p/6801241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!