如何在雅虎富文本编辑器中设置焦点

发布于 2024-07-06 18:45:12 字数 102 浏览 10 评论 0原文

我有一个 HTML 表单,其中包含 YAHOO 富文本编辑器。

当我显示表单时,我希望雅虎编辑器具有焦点,以便光标准备好接受输入,而用户无需单击它或使用 Tab 键进入它

I have a an HTML form which contains the YAHOO rich text editor on it.

When I display the form I want the YAHOO editor to have focus so that the cursor is ready to accept input without the user having to click on it or tab into it

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

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

发布评论

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

评论(3

人间☆小暴躁 2024-07-13 18:45:12

我从 YUI 库 的文档中得到了这个。 具体在标题为 编辑器 - 基本按钮的示例中

var myEditor = new YAHOO.widget.Editor('editor', {focusAtStart:true});
myEditor.render();

这里的关键是“focusAtStart”属性作为可选属性对象的一部分

I got this from the documenation over at the YUI library. Specifically at a sample titled Editor - Basic Buttons

var myEditor = new YAHOO.widget.Editor('editor', {focusAtStart:true});
myEditor.render();

The key here is the the "focusAtStart" attribute as part of the optional attributes object

笑叹一世浮沉 2024-07-13 18:45:12

我没有使用 YAHOO 富文本编辑器,但是如果您使用 window.onload 事件,它不会工作吗?-)

I haven't employed the YAHOO rich text editor, but wouldn't it work, if you use a window.onload event ?-)

秋意浓 2024-07-13 18:45:12

与 roenving 一样,我从未使用过 YAHOO 富文本编辑器,但它应该与 window.onload 事件配合使用。

假设您为 YAHOO 富文本编辑器指定了 id="yahoo_text_editor"
然后,

<body onload="document.getElementById('yahoo_text_editor').focus()">

希望这会有所帮助。

Like roenving, I have never used the YAHOO rich text editor, but it should work with the window.onload event.

Let's say you specified id="yahoo_text_editor" for your YAHOO rich text editor.
Then, do

<body onload="document.getElementById('yahoo_text_editor').focus()">

Hope this helps.

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