1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 用JQuery實(shí)現(xiàn)鼠標(biāo)點(diǎn)擊文本框顯示隱藏提示文本

        時(shí)間:2020-11-09 12:14:33 jQuery 我要投稿

        用JQuery實(shí)現(xiàn)鼠標(biāo)點(diǎn)擊文本框顯示隱藏提示文本

          比如本人網(wǎng)站的.搜索框:

        用JQuery實(shí)現(xiàn)鼠標(biāo)點(diǎn)擊文本框顯示隱藏提示文本

          不使用的時(shí)候:

          鼠標(biāo)點(diǎn)擊后:

          用JQuery實(shí)現(xiàn)這個(gè)效果非常簡(jiǎn)單,下面是代碼:

          復(fù)制代碼 代碼如下:

          $(document).ready(function () {

          var searchBox = $("#ctl00_txtSearch");

          searchBox.focus(function () {

          if (searchBox.val() == this.title) { // TextBox控件ToolTip屬性轉(zhuǎn)換為Html為title屬性

          searchBox.val("");

          }

          });

          searchBox.blur(function () {

          if (searchBox.val() == "") {

          searchBox.val(this.title);

          }

          });

          searchBox.blur();

          });

          其中#ctl00_txtSearch是搜索框的ID(ASP.NET可以通過ClientID獲取這個(gè)ID)

          

        【用JQuery實(shí)現(xiàn)鼠標(biāo)點(diǎn)擊文本框顯示隱藏提示文本】相關(guān)文章:

        1.關(guān)于jQuery實(shí)現(xiàn)鼠標(biāo)單擊網(wǎng)頁文字后在文本框顯示的方法介紹

        2.jquery顯示和隱藏div特效的實(shí)例

        3.jQuery實(shí)現(xiàn)網(wǎng)頁進(jìn)度顯示插件方法

        4.實(shí)現(xiàn)jQuery鼠標(biāo)滑向當(dāng)前圖片高亮顯示并且其它圖片變灰的方法

        5.關(guān)于jQuery實(shí)現(xiàn)高亮顯示的方法介紹

        6.jQuery控制元素顯示隱藏切換滑動(dòng)的方法總結(jié)

        7.有關(guān)jQuery效果 slideToggle() 方法(在隱藏和顯示之間切換)

        8.jquery之超簡(jiǎn)單的div顯示和隱藏特效demo簡(jiǎn)介

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>