jQuery给动态添加的元素绑定事件问题
这是我写的一个测试的同样是出不来各位大神看一下问题出在哪里感激不尽<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional/...
这是我写的一个测试的 同样是出不来 各位大神看一下问题出在哪里 感激不尽
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script src="jquery-1.7.2.min.js"></script>
<script>
function ss(){
var oU = document.getElementById("ul");
var oL = document.createElement("li");
oL.innerHTML="<a id='a' href='#'>one</a>";
oU.appendChild(oL);
};
$("#ul a").live('click',function(){
alert("ASDAS");
});
</script>
</head>
<body>
<input type="button" id="but1" onclick="ss()" value="add" />
<ul id="ul">
</ul>
</body>
</html> 展开
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script src="jquery-1.7.2.min.js"></script>
<script>
function ss(){
var oU = document.getElementById("ul");
var oL = document.createElement("li");
oL.innerHTML="<a id='a' href='#'>one</a>";
oU.appendChild(oL);
};
$("#ul a").live('click',function(){
alert("ASDAS");
});
</script>
</head>
<body>
<input type="button" id="but1" onclick="ss()" value="add" />
<ul id="ul">
</ul>
</body>
</html> 展开
展开全部
<html>
<head>
<script type="text/javascript" src="http://www.sz886.com/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#but1").click(function(){
$("#ul").append("<a href=\"javascript:;\">深圳网站建设</a>");
});
//1.9以上用delegate,低版本用live
$(document).delegate('#ul a', {
click: function (e) {
alert("sz886");
}
});
});
</script>
</head>
<body>
<input type="button" id="but1" value="add" />
<ul id="ul">
</ul>
</body>
</html>
<head>
<script type="text/javascript" src="http://www.sz886.com/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#but1").click(function(){
$("#ul").append("<a href=\"javascript:;\">深圳网站建设</a>");
});
//1.9以上用delegate,低版本用live
$(document).delegate('#ul a', {
click: function (e) {
alert("sz886");
}
});
});
</script>
</head>
<body>
<input type="button" id="but1" value="add" />
<ul id="ul">
</ul>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询