簡體   English   中英

jQuery keypress事件不適用於contenteditable部分中的元素

[英]jQuery keypress event doesn't work on elements inside contenteditable section

我有section元素,它是contenteditable = true,它包含另一個元素,例如用戶創建的圖像和段落。

<section contenteditable=true>
<p>Hello there</p>
</section>

如果我將jQuery on('keypress')事件附加到該部分或p元素,則它將不起作用。 “點擊”事件運行良好。

這是jsFiddle: http : //jsfiddle.net/j9mHF/

為了獲得按鍵事件,該元素必須啟用contenteditable嗎?

您需要將事件附加到section元素,如下所示:

$('section').on('keypress', function(e) {
   alert('typed'); 
});

http://jsfiddle.net/Dieterg/j9mHF/1/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM