日期:2014-05-16 浏览次数:20605 次
$("#bt1").live("click",function(){
});
$("body").on("click","#bt1",function(){
});
给按钮添加一个ID
<button type="button" id=“bt1”>点击</button>
Js--JQ:
$("#bt1").attr("onclick",function(){
alert("111");
})
大概这样
用这个方法,为什么我追加 这段html代码段 的时候就 执行 alert,而追加后的 “点击” 按钮就不执行了
已测试 可以使用 记得导入JQ
<!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=utf-8" />
<title>无标题文档</title>
</head>
<script type="text/javascript" src="jquery-1.js">
</script>
<script type="text/javascript">
var sa = $("#bt1");
function ale(){
//alert(sa)
document.getElementById('bt1').setAttribute('onclick','gogogo()')
}
function gogogo(){
alert("ou yeah");
}
</script>
<body>
<input type="button" id="bt1" value="123"/>
<input type="button" id="bt2" value="123312" onclick="ale()" />
</body>
</html>