标签:
1.通过在事件名称后面添加以点号分隔的后缀来为事件名称指派命名空间
$("#button").bind("click.editMode",function(){});
$("#buttonM").bind("click.editMode",function(){});
2.再通过unbind解除该组的所有绑定
$("*").unbind("click.editMode");
标签:
原文地址:http://www.cnblogs.com/rocky-fang/p/5207956.html