91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

asp.net中怎么使用jquery實現搜索框默認提示功能

發布時間:2022-03-30 10:13:08 來源:億速云 閱讀:160 作者:iii 欄目:移動開發

這篇文章主要介紹了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實現搜索框默認提示功能”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“asp.net中怎么使用jquery實現搜索框默認提示功能”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永新县| 大宁县| 漯河市| 紫阳县| 乌恰县| 嘉黎县| 武陟县| 棋牌| 河池市| 洪泽县| 民丰县| 永定县| 咸阳市| 盐山县| 宜阳县| 曲靖市| 且末县| 文安县| 普陀区| 商城县| 叙永县| 南部县| 西和县| 平凉市| 香河县| 彰化市| 奎屯市| 永仁县| 桂东县| 德兴市| 长岭县| 舒兰市| 黄大仙区| 介休市| 永兴县| 石狮市| 玛纳斯县| 莒南县| 贵南县| 遂昌县| 蓬溪县|