用jquery给元素绑定事件,一些内部细节

按看段代码:

1 $('.test').on('click', function() {
2   console.log('hello');
3   $(this).removeClass('test');
4 });

就算是remove掉class  test,照样可以点,事件绑定的是这个对象。

posted @ 2015-04-01 17:43  lqj12138  阅读(86)  评论(0编辑  收藏  举报