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.
当我在包含 nicedit 实例的 div 上使用 jquery 可排序插件时,如果我用左键单击它,我将无法输入文本区域。我要么必须选择它,要么在我左键单击它后,右键单击它。
关于为什么的任何想法?
经过大量的反复试验和搜索,我发现我必须将点击绑定到编辑器替换 textarea 的 div 并强制它聚焦:
$('.nicEdit-main').click( function() { $(this).focus() } );
一切都完成后加载。