禁用 IE 中的调整大小控件

发布于 2024-07-14 16:42:53 字数 413 浏览 6 评论 0原文

我有一个网络应用程序,基于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

胡大本事 2024-07-21 16:42:53

有点尴尬,之前没想到。

解决方案是 - 当然(在 javascript 中):

var comp = doc.getElementById('my_iframe_comp');
comp.oncontrolselect = function() { return false; };

通过在 controlselect 事件上返回 false,传播停止并且调整大小控件不会显示。

Kind of embarrassing I haven't thought of it before.

The solution is - of course (in javascript):

var comp = doc.getElementById('my_iframe_comp');
comp.oncontrolselect = function() { return false; };

By returning false on controlselect event, the propagation stops and the resize controls do not show up.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文