我有這個按鈕:爲什麼這個inline stopPropagation方法調用不起作用?
<button
type="button"
onclick='parent.parent.ExecuteCommand(14);event.stopPropagation()'
class="button_air-medium">
<img
id="selectMode"
class="shortcutContant"
src="../stdicons/icon_select.gif">
</button>
正如你可以看到裏面onclick屬性我叫兩個功能ExecuteCommand
和stopPropagation
。
執行命令工作正常,但在我看來,stopPropagation
方法沒有被觸發,因爲該按鈕下的元素會受到影響。
任何想法爲什麼stopPropagation方法不起作用?
我想'stopPropagation()'屬於jQuery的。相反,只需使用'return false;'它應該訣竅 – ihpar
你需要問自己這裏的問題是在這種情況下'事件'是什麼? – Liam