当我尝试提交搜索时输入清晰的文本
你好我有以下问题。当我在搜索中输入数字并按按钮时,我会访问网站 http://www.telefonkoll.se文本会自动清除,结果页面会返回所有结果。如果我不使用 jquery 代码,它可以正常工作。
我的 jQuery 代码是这样的:
$("document").ready(function() {
$("#mod_search_searchword").attr("value","Sök telefonnummer här");
});
$("#mod_search_searchword").live('focus', function (event) {
$("#mod_search_searchword").focus(function() {
$(this).val("");
});
});
$("#mod_search_searchword").live('blur', function (event) {
$("#mod_search_searchword").blur(function() {
if ($(this).val() == ""){
$(this).val("Sök telefonnummer här"); }
});
});
我想要用上面的代码做的是当用户单击那里时清除当前文本。如果它写一些东西仍然在那里,如果不返回初始文本。它看起来工作正常,但是当我尝试提交数据时,显然会发生错误。不知道是代码的问题还是我不知道的问题。
Hello I have the following problem. I the site http://www.telefonkoll.se when I enter a number in the search and press the button then the text clears automatically and the result page return me all the results. If I don't use the jquery code it works correctly.
My jQuery code is this:
$("document").ready(function() {
$("#mod_search_searchword").attr("value","Sök telefonnummer här");
});
$("#mod_search_searchword").live('focus', function (event) {
$("#mod_search_searchword").focus(function() {
$(this).val("");
});
});
$("#mod_search_searchword").live('blur', function (event) {
$("#mod_search_searchword").blur(function() {
if ($(this).val() == ""){
$(this).val("Sök telefonnummer här"); }
});
});
What I want to do with the above code is to clear the current text when the user click there. If it write something to still there, if not to return the initial text. It looks to work correctly but when I try to submit the data something wrong obviously happen. I don't know if it's the code or something I don't know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
避免重新发明轮子。使用许多 jQuery 水印 插件可用。
Avoid reinventing the wheel. Use one of the many jQuery watermark plugins available.