下面两种方式都可以实现,有什么区别呢
$(function(){
$("#close").on("click",function(){
$(this).alert("close");
});
});
和
$(function(){
$("#close").click(function(){
$(this).alert("close");
});
});
$(function(){
$("#close").on("click",function(){
$(this).alert("close");
});
});
和
$(function(){
$("#close").click(function(){
$(this).alert("close");
});
});
2016-06-30
举报