【发布时间】:2017-02-28 14:43:44
【问题描述】:
我创建了一个可编辑的 iFrame:
<iframe frameborder="0" id="editor"></iframe>
<script type="text/JavaScript">
document.getElementById('editor').contentWindow.document.designMode="on";
document.getElementById('editor').contentWindow.document.close();
$("#editor").contents().find("body").blur(function(){ // Blur functions });
$("#editor").contents().find("body").focus(function(){// focus functions });
</script>
焦点和模糊事件在 chrome 中被触发,但不适用于 firefox。
【问题讨论】:
标签: jquery firefox iframe onblur onfocus