将 JS 函数转换为 jQuery - (输入字段清除默认值)
我想知道是否有 jQuery 专家愿意将下面的脚本转换为 jQuery。我自己转换它时遇到了麻烦,并且更喜欢使用 jQuery 等效项。
我想做的只是从提交时的关键字字段中删除“搜索”的默认值,因为用户可以将关键字字段留空。
function clearValue() {
var searchValue = document.getElementById("global-search").value;
if (searchValue == "Search") {
document.getElementById("global-search").value = "";
}
}
任何帮助将不胜感激。
I was wondering if some jQuery expert would be so kind to convert the below script to jQuery. I am having trouble converting it myself and would much prefer to use a jQuery equivalent.
What I am trying to do is simply remove the default value of 'Search' from a keyword field onSubmit, as the user can leave the keyword field blank.
function clearValue() {
var searchValue = document.getElementById("global-search").value;
if (searchValue == "Search") {
document.getElementById("global-search").value = "";
}
}
Any help would be much appreciate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请注意,
.on()
是 jQuery 1.7 中的新功能,在本例中与.bind()
相同。以下是与此答案相关的文档:
.on()
: http://api.jquery.com/on" rel="nofollow">http://api.jquery.com/on" jquery.com/on.val()
: http://api.jquery.com/on.val()
: jquery.com/valdocument.ready
:http://api.jquery.com/ready/Note that
.on()
is new in jQuery 1.7 and in this case is the same as.bind()
.Here is the documentation related to this answer:
.on()
: http://api.jquery.com/on.val()
: http://api.jquery.com/valdocument.ready
: http://api.jquery.com/ready/