我想按自動向下箭頭鍵時,用戶按下我的CONTENTEDITABLE DIV進入,這裏是我的代碼試圖如何在用戶進入該div時按下按鍵事件?
$('body').on('keypress', '.chat_txt', function(e) {
if (e.keyCode === 13) {
e.preventDefault();
e.stopPropagation();
$(this).append('\n');
$(this).trigger({ type: 'keypress', which: 40});
}
});
但不幸的是這個代碼是徒勞的。
的jsfiddle https://jsfiddle.net/2q9x4xzm/
[模擬按鍵時使用jQuery(HTTP的://計算器。 com/questions/1468384/simulate-keypress-with-jquery) – Tibrogargan