可能重复:
如何对与 jQuery 绑定的事件进行排序
我为同一个元素绑定了两个事件。让我们说按钮:
<button>Click</button>
<script>
/*First Event*/
$('button').click(function(){
/***Have some piece of code which gets the data that is used for next event***/
});
/*Second Event*/
$('button').click(function(){
/***do some operations with the data that has been fetched from the previous event***/
});
</script>
现在,每当在按钮上触发单击时,都会同时调用两个事件..所以我无法实现我的目标。
一旦第一个事件完成它的工作,我们可以限制事件应该被调用吗......
注意:上面的代码是解释我的问题的伪代码..