按看段代码:
1 $('.test').on('click', function() { 2 console.log('hello'); 3 $(this).removeClass('test'); 4 });
就算是remove掉class test,照样可以点,事件绑定的是这个对象。