原型函数 .activate() 的 jQuery 等效项是什么
Prototype 的 activate 函数
将焦点集中到表单控件并选择其内容(如果它是文本输入)
如果表单控件是根据 Prototype 网站的 。即
$('my_element_id').activate();
jQuery 中的等效函数是什么?
Prototype's activate function
Gives focus to a form control and selects its contents if it is a text input
according to the Prototype website. i.e.
$('my_element_id').activate();
What is the equivalent function in jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
的快捷方式
这是http://api.jquery.com/focus/
which is a shortcut for
http://api.jquery.com/focus/
Prototype 的 activate() 函数关注并选择表单元素的全部内容。
在 JQuery 中,可以使用三个函数来复制此行为:
Prototype's activate() function focuses on and selects the entire contents of the elements of the form.
In JQuery, this behavior can be replicated with three functions:
jQuery 的
focus()
方法不会选择输入字段中的文本。相反,添加select()
:jQuerys
focus()
method does not select the text in the input field. Instead, addselect()
: