禁用 IE 中的调整大小控件
我有一个网络应用程序,基于 TinyMCE (javascript) 的 HTML wysiwyg 编辑器。 通过 designMode="on" 在 Internet Explorer 中启用内容编辑。
如果我将 iframe 放入编辑的内容中:
这是我正在编辑为 HTML 源的内容。
<iframe src="..."></iframe>
<b>I just added an iframe to my content</b>
iframe 将变得可见,但 Internet Explorer 将为其创建调整大小控件。 这意味着我作为用户可以使用鼠标调整 iframe 的大小。
我想禁用它。 有人知道这是否可能吗?
I have a web application, HTML wysiwyg editor based on TinyMCE (javascript).
The content editing is enabled in Internet Explorer with designMode="on".
If I put an iframe in the edited content:
This is the content I am editing as HTML source.
<iframe src="..."></iframe>
<b>I just added an iframe to my content</b>
The iframe will become visible however Internet Explorer will create resize controls for it. That means that I, as a user, can resize the iframe with the mouse.
I would like to disable that. Does anybody know if it is possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有点尴尬,之前没想到。
解决方案是 - 当然(在 javascript 中):
通过在 controlselect 事件上返回 false,传播停止并且调整大小控件不会显示。
Kind of embarrassing I haven't thought of it before.
The solution is - of course (in javascript):
By returning false on controlselect event, the propagation stops and the resize controls do not show up.