中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

jquery常用代碼--(一)

發布時間:2020-07-22 20:05:36 來源:網絡 閱讀:528 作者:sunny葉雨竹 欄目:web開發

        在工作中,常用的特效,其實不是很多。主要分為以下幾大類:

        1.常見Tab切換 

                2.有關輸入框 input的簡單交互 

                3.進度條

                4. Banner切換

                5.可拖拽彈出層

                6.文字超出則省略且顯示為點點

                7.內容區內部右邊3D云標簽


1.常見Tab切換

        $(function(){

               $('.tab_change  ul  li').click(function(){         

                    $(this).addClass('cur').siblings().removeClass('cur');         

                    $('.tab_change ol li').eq($(this).index()).show().siblings().hide();

                }) 

        })


2.有關輸入框 input的簡單交互

    1.一般要求的直接帶入寫法

    <input    type=“text”   value=“請輸入關鍵字”                            

               onfocus=“if(value==‘請輸入關鍵字’){value=‘    ’}”                                    

                onblur=“if(value==‘’){value=‘請輸入關鍵字’}”                   />

    2.特別要求,比如用jQueryhtml結構頁面外寫 

    $(function(){        

                $( ‘.text’).focus(function(){                          

                        if($(this).val()==‘請輸入關鍵字’)  {

                               $(this).val(‘’) ;   

                        }       

                })                

                $( ‘.text’).blur(function(){                          

                         if($(this).val()==‘’) {  

                                 $(this).val(‘請輸入關鍵字’);

                         }       

                 })

   3.特別要求,比如多個輸入框的驗證,以及輸入前后,字體的顏色

 $('#name , #psw , #code').focus(function(){        

         if( $(this).val()=='請輸入用戶名' || $(this).val()=='請輸入密碼 || $(this).val()=='請輸入驗證碼')               {                 

                $(this).val('');                 

                $(this).css('color','#000');        

         }

    });

    $('#name , #psw , #code').blur(function(){           

            if( $(this).val()=='')  {

                    $('#name').val('請輸入用戶名');  

                    $('#psw').val('請輸入密碼');

                    $('#code').val('請輸入驗證碼');    

                    $(this).css('color','#9a9a9a');           

                }  

     });

4.特別要求,比如原為文本框的,后寫入時變為輸入密碼框

<input name="psw" id="psw" type="text" value="請輸入密碼" />

<input name="password" id="password" type="password" class="input display_none"  />


$("#psw").focus(function() {

        var text_value = $(this).val();

        if (text_value ==this.defaultValue) {

                $("#psw").hide();

                $("#password").show().focus();   

         }

});


$("#password").blur(function() {

            var text_value = $(this).val();

            if (text_value == "") {

                    $("#psw").show();$("#password").hide();

            }

});

5.特別要求:輸入前文字居中,輸入后文字左靠齊

$("input[type='text']").focus(function(){  

          $(this).css({"text-align":"left","color":"#333"})          

           $(this).val(" ")

})


$("input[type='text']").blur(function(){    

        if($(this).val()==" "){

                $(this).css({"text-align":"center","color":"#dfdfdf"})

                $(this).val("-請輸入-")   

         }

})

向AI問一下細節

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

AI

黄山市| 丹巴县| 贵州省| 前郭尔| 海淀区| 资阳市| 会东县| 额济纳旗| 弥勒县| 凤山县| 东丽区| 中山市| 建平县| 南召县| 南投县| 五峰| 呼伦贝尔市| 琼海市| 青河县| 河东区| 和林格尔县| 资源县| 昭觉县| 安西县| 融水| 玉树县| 临沧市| 登封市| 曲阜市| 新丰县| 桓台县| 汤原县| 札达县| 北海市| 佛教| 清涧县| 肇源县| 双柏县| 瑞安市| 盐池县| 定兴县|