Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 TinyMCE 编辑器,我必须为一些特殊的方程定制它。问题是当我按下回车键时,光标会转到新行。我的问题是当有人在编辑器内按下回车键时如何防止光标跳到新行。我想在按下回车键时光标保持在原来的位置。就像 textarea 一样,当按下回车键时,光标会转到新行。谁能解释如何防止光标跳到新行。
谢谢。
我认为您可以使用以下方法捕获 Enter 键
$(document).keypress(function(e) { if(e.which == 13) { // enter pressed } });
这将捕获整个文档中的密钥