1 $(function(){ 2 $(".kkk").bind("click", function(event){ 3 alert("clicked"); 4 event.stopPropagation(); //方法一 5 return false; //方法二 6 }); 7 });