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 rel="nofollow noopener noreferrer" 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 style="margin: 100px auto; width: 400px; height: 80px;border: solid 1px #0a8fda;">
<p style="text-align:center;">
<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实现搜索框默认提示功能。对于钱这个问题,拿还是不拿,挣还是不挣,很简单,问问良心,它说可以就可以;它说不可以,就坚决不可以。更多关于asp.net使用jquery实现搜索框默认提示功能请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
ASP.NET轻量级MVC框架Nancy的基本用法

使用grpcui测试ASP.NET core的gRPC服务

ASP.NET Core中的对象池介绍

asp.net中MVC的处理流程详解

ASP.NET Core的日志系统介绍