亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

木兰县| 唐河县| 台湾省| 甘南县| 阿坝县| 镇坪县| 凌海市| 从化市| 那曲县| 昭觉县| 淮南市| 确山县| 上林县| 宁德市| 南靖县| 五台县| 清水县| 湖口县| 马关县| 交城县| 富锦市| 恩平市| 巫溪县| 双江| 大石桥市| 繁昌县| 马山县| 桃江县| 平果县| 聂拉木县| 喀什市| 南郑县| 紫阳县| 雷州市| 洪江市| 嘉荫县| 林周县| 荆门市| 恭城| 西峡县| 临泽县|