码迷,mamicode.com
首页 > 其他好文 > 详细

为动态添加的元素绑定事件

时间:2020-02-18 14:37:46      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:元素   ide   src   区别   htm   read   添加   消失   oct   

<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<script>
$(document).ready(function(){
  $("body").on(click,p,function(){
    $(this).hide();
  });
});
</script>
</head>
<body>
<p>如果您点击我,我会消失。</p>
<p>点击我,我会消失。</p>
<p>也要点击我哦。</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});
</script>
</head>
<body>
<p>如果您点击我,我会消失。</p>
<p>点击我,我会消失。</p>
<p>也要点击我哦。</p>
</body>
</html>

注意1,2代码区别,方式1,后期动态添加的<p>标签是可以点击消失的,方式2不行

为动态添加的元素绑定事件

标签:元素   ide   src   区别   htm   read   添加   消失   oct   

原文地址:https://www.cnblogs.com/zhaogaojian/p/12326004.html

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