我正在使用 Jquery 文本编辑器,在编辑时我想在编辑器上拖放图像。但问题是,在 jqte 上删除 img 后,该mouseenter
事件不会触发。
$(document).ready(function() {
$('.jqte_editor img').on('mouseenter', function() { alert("hello");
$(this).before("<div style='position:absolute'><input type='textbox'>
</input></div>"); });
});
编辑器主容器
<div class="jqte_editor" contenteditable="true"><img ></img></div>