如何在雅虎富文本编辑器中设置焦点
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我从 YUI 库 的文档中得到了这个。 具体在标题为 编辑器 - 基本按钮的示例中
这里的关键是“focusAtStart”属性作为可选属性对象的一部分
I got this from the documenation over at the YUI library. Specifically at a sample titled Editor - Basic Buttons
The key here is the the "focusAtStart" attribute as part of the optional attributes object
我没有使用 YAHOO 富文本编辑器,但是如果您使用 window.onload 事件,它不会工作吗?-)
I haven't employed the YAHOO rich text editor, but wouldn't it work, if you use a window.onload event ?-)
与 roenving 一样,我从未使用过 YAHOO 富文本编辑器,但它应该与
window.onload
事件配合使用。假设您为 YAHOO 富文本编辑器指定了
id="yahoo_text_editor"
。然后,
希望这会有所帮助。
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
Hope this helps.