为什么需要 window.setTimeout 将 iframe 的设计模式设置为“打开”?在IE中
在我的实验中,我发现即使在 window.onload 事件之后,也需要 window.setTimeout 通过将 iframe 的设计模式设置为“ON”来使 iframe 可编辑。这种情况发生在 IE 中,而在 Firefox 中则不需要 window.setTimeout。我没有在任何其他浏览器中进行过测试。
是否有必要在 IE 中使用 window.setTimeout 将 iframe 的设计模式设置为“ON”?
您可以从这里尝试,http://www.nazmulweb.com/site5/演示/iframe/Default.aspx
In my experiment, I have seen that even after window.onload event, window.setTimeout is required to make an iframe editable by setting iframe's designmode "ON". And this happens in IE, while in Firefox window.setTimeout is not required. I have not tested in any other browser.
Is it necessary to use window.setTimeout to set an iframe's designmode "ON" in IE?
You can try it from here, http://www.nazmulweb.com/site5/demo/iframe/Default.aspx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该在加载 iframe 时设置
designmode='on'
。You should set the
designmode='on'
when iframe is loaded.您最好将 iframe 的
的
contentEditable
属性设置为true
,我认为这会立即起作用。我已经在我编写的所见即所得编辑器中做到了这一点,尽管现在我不记得为什么了。我很确定我有充分的理由。You might be better off setting the
contentEditable
property of the iframe's<body>
totrue
instead, which I think will work immediately. I've done that in WYSIWYG editors I've written, although now I can't remember why. I'm pretty sure I had decent reasons.