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

溫馨提示×

溫馨提示×

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

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

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

麻栗坡县| 兰坪| 阿拉善盟| 若尔盖县| 始兴县| 英山县| 绩溪县| 台中市| 水城县| 遂昌县| 德庆县| 正蓝旗| 新乡县| 日土县| 繁峙县| 恩平市| 紫金县| 巧家县| 海口市| 城固县| 甘孜| 和田县| 襄垣县| 铁力市| 大余县| 原阳县| 土默特右旗| 吴堡县| 英吉沙县| 江都市| 陆川县| 响水县| 新乡县| 沙湾县| 项城市| 大渡口区| 应用必备| 蒙自县| 乌兰县| 营口市| 湾仔区|