如果一個事件發生可能會阻止他人提高嗎?如何防止事件發生?
$(window).click(
function(e)
{
$("#out").html("preventing next event from happening\n");
});
$(window).click(
function(e)
{
$("#out").html($("#out").html() + "evil event should not write here");
});
事件的順序並不重要。重要的是,如果一個人執行其他人不這樣做。 – BrunoLM 2011-03-08 21:53:46
http://stackoverflow.com/questions/209029/best-way-to-remove-an-event-handler-in-jquery – n00b 2011-03-08 21:56:34