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

动态新增元素的js无效解决方法

时间:2016-08-23 06:50:34      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

通过监听父级容器下匹配子元素进行事件绑定

<div id="test1"><input type="button" class="btn" value="按钮1"/><input type="button" class="btn" value="按钮1"/><input type="button" class="btn" value="按钮1"/><p></p></div><input type="button" class="add" value="加一个按钮" /><script type="text/javascript" src="js/jquery-1.10.2.min.js"></script><script type="application/javascript">
	$(function(){
		$(‘#test1‘).on(‘click‘,‘.btn‘,function(){
			alert(‘绑定有效1‘)
		});
		$(‘.add‘).on(‘click‘,function(){
			$(‘#test1‘).append(‘<input type="button" class="btn" value="按钮2"/>‘)
		});
	})
</script>
 
 
$(‘.add‘).on(‘click‘,function(){
	$(‘#test1‘).append(‘<input type="button" class="btn" value="按钮2"/>‘);
       $(‘.btn‘).on(‘click‘,function(){});
});

 

动态新增元素的js无效解决方法

标签:

原文地址:http://www.cnblogs.com/jiaxin/p/5797810.html

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