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的以下小提琴http://fiddle.tinymce.com/baaaab进行拼写检查时,两个菜单都来了:
我想在这里禁用浏览器的右键菜单。
在您的小提琴中,在 chrome 中运行,从控制台执行:
$('#previewframe').contents().find('#content_ifr').contents().find( '.mceItemHiddenSpellWord').on("contextmenu", function (evt) { evt.preventDefault(); });
用于防止右键单击菜单。