DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 常用jQuery代碼分享
常用jQuery代碼分享
編輯:關於JavaScript     

1.查看浏覽器信息

navigator.userAgent

檢索浏覽器信息包括哪些字符

例如:

if (navigator.userAgent.toLowerCase().indexOf("htc") >= 0) {
        $("#GuanKa .page_content").css("transform", "scale(0.92)");

        $(".gaunka_pic").css("top", "-100px");
        $(".ertongji_btn").css("top", "570px");

      }

 2.給鏈接設置參數,再根據url參數做相應的事情

//用戶當天還沒上傳圖片 
    $(".Js_uplaod_bnt").click(function () {
      if ($(this).attr("myid") == "1") {
        SiteFunc.Ga('選擇騎騎寶');
      }
      else if ($(this).attr("myid") == "2") {
        SiteFunc.Ga('選擇睡睡寶');
      }
      else if ($(this).attr("myid") == "3") {
        SiteFunc.Ga('選擇踢踢寶');
      }
      else if ($(this).attr("myid") == "4") {
        SiteFunc.Ga('選擇爬爬寶');
      }
      else if ($(this).attr("myid") == "5") {
        SiteFunc.Ga('選擇學習寶');
      }
      else if ($(this).attr("myid") == "6") {
        SiteFunc.Ga('選擇走走寶');
      }
      window.location.href = "Upload.aspx?BabyPostureID=" + $(this).attr("myid");

    });

//點擊上傳Icon圖片的顯示
  var CurBabyPostureID = Cmn.Func.GetParamFromUrl("BabyPostureID");

  $(".Js_photo_icon_upimg img").attr("src", "images/result/photo_icon" + CurBabyPostureID + ".png");

3.手機端長按觸發事件

//某一元素長按了2秒就跳轉到一個頁面
var _timeout = null;
    //長按二維碼跳轉到辦卡也
    $(".Js_LongPressToCard").on("touchstart",function () {
      window.clearTimeout(_timeout);

      _timeout = setTimeout(function () {
        window.location.href = "https://mbank.spdbccc.com.cn/creditcard/indexActivity.htm?data=000501";
      }, 2000);
    });

    $(".Js_LongPressToCard").on("touchend", function () {
      window.clearTimeout(_timeout);
    });

以上所述就是本文的全部內容了,希望大家能夠喜歡。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved