TinyMCE
(开发构建)图像textbox
在具有引导主题的模态中无法单击。
任何模态文本框都不可点击。
请帮助检查 - 我们使用以下代码:
$(document).on('focusin',function(e){
if($(event.target).closest(".mce-window").length){
e.stopImmediatePropagation();
}
});
HTML:
<div class="form-group">
<textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%"></textarea>
</div>