asp.net 在TextBox裡面建立一個預設提示,例如:搜尋。

來源:互聯網
上載者:User
View Code 

 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Recipe1.aspx.cs" Inherits="Recipe1" %>
2
3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml">
5 <head runat="server">
6 <title>Recipe1</title>
7 <script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>
8 <style type="text/css">
9 .defaultText
10 {
11 font-style: italic;
12 color: #CCCCCC;
13 }
14 </style>
15 <script type="text/javascript">
16 $(document).ready(function () {
17 var searchBox = $("#<%=txtSearch.ClientID %>"); // 通過ClientID擷取伺服器控制項ID
18 searchBox.focus(function () {
19 if (searchBox.val() == this.title) { // TextBox控制項ToolTip屬性轉換為Html為title屬性
20 searchBox.val("");
21 searchBox.removeClass("defaultText");
22 }
23 });
24 searchBox.blur(function () {
25 if (searchBox.val() == "") {
26 searchBox.val(this.title);
27 searchBox.addClass("defaultText");
28 }
29 });
30 searchBox.blur();
31 });
32 </script>
33 </head>
34 <body>
35 <form id="form1" runat="server">
36 <p>
37 </p>
38 <div align="center">
39 <fieldset style="width: 400px; height: 80px;">
40 <p>
41 <asp:TextBox ID="txtSearch" runat="server" Width="200px" CssClass="defaultText" ToolTip="請輸入搜尋的關鍵字"></asp:TextBox>
42 <asp:Button ID="btnSearch" runat="server" Text="搜尋" /></p>
43 </fieldset>
44 </div>
45 </form>
46 </body>
47 </html>


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.