您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要为大家展示了“asp.net如何使用jquery实现搜索框默认提示功能”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“asp.net如何使用jquery实现搜索框默认提示功能”这篇文章吧。
文本框中创建默认文本提示
通常用户在搜索内容时,在文本框输入内容前,文本框都会给出默认提示,提示用户输入正确的内容进行搜索。
当文本框获得焦点,如果文本框内容跟提示内容一样,提示内容会自然消失。
当文本框没有任何值并失去焦点,文本框内容会重新生成默认提示。
为了实现上面的需求,代码如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Web.Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script src="jquery-1.8.2.min.js" type="text/javascript"></script> <link href="Base.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .text { border: #0a8fda solid 1px; color: #cccccc; font-style:italic; background: #fff url(img/input.gif); padding: 5px; } .text-focus { border: solid 1px #f50; background: #fff url(img/input.gif); padding: 5px; } </style> <script type="text/javascript"> $(document).ready(function () { var txtSearch = $("#<%=txtSearch.ClientID%>"); $("#txtSearch").focus(function () { if (txtSearch.val() == this.title) { txtSearch.val(""); this.className = "text-focus"; } }); $("#txtSearch").blur(function () { if (txtSearch.val() == "") { txtSearch.val(this.title); this.className = "text"; } }); txtSearch.blur(); }); </script> </head> <body> <form id="form1" runat="server"> <div > <p > <asp:TextBox ID="txtSearch" runat="server" Width="200px" class="text" ToolTip="请输入搜索的关键字"></asp:TextBox> <asp:Button ID="btnSearch" runat="server" Text="搜索" class="button blue" /> </p> </div> </form> </body> </html>
以上是“asp.net如何使用jquery实现搜索框默认提示功能”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。