如何在 jQuery 中停止自定义事件冒泡?
例如我有这个代码:
$('.myclass').bind('amodaldestroy', function(){
....does something.....
})
我如何只允许在冒泡时找到的第一个元素上触发一次?我可以只添加 returnfalse
吗?
$('.myclass').bind('amodaldestroy', function(){
....does something.....
return false;
})