1
我在頁面上有p
元素。防止其他註冊的點擊事件?
這p
有2次綁定點擊(請留下這種方式。我知道有其他的選擇。)
$('p').click (function (e) {
e.preventDefault(); //<== not helping me as I thought it should
alert('1');
});
//...later on the same page...
$('p').click (function () {
alert('2');
});
我想第一代碼將防止二代碼執行( NOT VIA FLAGS)
這樣做的最多方式是什麼elegant
?
感謝.......... :) –
如果我想要防止只有Click事件而不是Hover事件(例如)? –
你可以顯示懸停代碼嗎?這不應該阻止懸停事件 – Esailija