当我尝试提交搜索时输入清晰的文本

发布于 2024-10-02 04:06:33 字数 763 浏览 2 评论 0原文

你好我有以下问题。当我在搜索中输入数字并按按钮时,我会访问网站 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 技术交流群。

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

发布评论

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

评论(1

童话 2024-10-09 04:06:33

避免重新发明轮子。使用许多 jQuery 水印 插件可用。

Avoid reinventing the wheel. Use one of the many jQuery watermark plugins available.

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