如何在 Firefox 中自动聚焦 RTE 编辑器?

发布于 2024-07-06 00:11:10 字数 77 浏览 11 评论 0原文

我们有一个基于 htmlarea 的 RTE 编辑器,其中包含在 iframe 内启用了编辑模式的内容。 问题是如何自动将焦点带入编辑器?

We have a RTE editor based on htmlarea which consists of content with editmode enabled inside an iframe. The question is how to automatically bring the focus into the editor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

静水深流 2024-07-13 00:11:10

其中 IFRAMEidmyRTE

var iframe = document.getElementById("myRTE");
if ( iframe && iframe.contentWindow )
   iframe.contentWindow.focus();

Where the id of the IFRAME is myRTE:

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