绑定事件 $('.son').on('click.zs', function() { // zs是命名空间 alert('ok'); }); 解绑 $('.son').off() $('.son').off('click') $('.son').off('click', 'zs')