我们在 jQuery 中有没有像“onBeforeSomeEvent”这样的事件?
例如,
<input type='button' class='confirmdelete' onclick='delete();' value='DELETE' />
现在我想显示一个自定义对话框以进行确认。(我不想在 JavaScript 中使用默认的确认方法)。
所以我需要类似的东西,
$('.confirmdelete').onBeforeClick(function() {
if(true) //I show the custom dialog here and check some conditions.
return true;
return false;
});
如果我从 onbeforeclick 事件中得到“真”,则该onclick
事件应该触发。
对不起,如果我感到困惑。可能就像beforeActivate
手风琴一样。