首先介绍这两个方法之前,我们常用的是click()方法
$("a").click(function() {
alert("hello");
});
参数:type,[data],function(eventObject)
例如:
$("p").bind("click",function(){
alert("hello");
})
也可以传参
var message = "how are you!";
$("p").bind("click",{msg:message},function(e){
alert(e.data.msg);
})
<tr class="mytr">
<td class="mytd">Click me</td>
</tr>
$(".mytd").bind("click",function(){
alert("hello");
})
点击Clike me 会弹出hello
$(".mytr").after("<tr><td class='mytd'>后加的</td></tr>");
这时 再使用bind点击"后加的"不会执行
$(".mytd").live("click",function(){
alert("hello");
})