很實用的JQuery程式碼片段

來源:互聯網
上載者:User

標籤:back   視窗   otto   測試   else   abs   右鍵   ring   move   

1 元素螢幕置中
jQuery.fn.center = function () {    this.css("position","absolute");    this.css("top",($(window).height()-this.height())/2+$(window).scrollTop()+"px");    this.css("left",($(window).width()-this.width())/2+$(window).scrollLeft()+"px");    return this;}$("#myDiv").center();

 

2 擷取頁面路徑相關參數
//值:http://42du.cn/list#jqvar url = document.URL;//值:http:var protocol = location.protocol;//值:42du.cnvar host = location.host;//值:jqvar hashP = document.URL.split(‘#‘)[1];

 

3 刪除內聯樣式
$("*[style]").attr("style", "");
4 長度限制並截取
var $elem = $("#title");if($elem.text().length > 30) {    $elem.text($elem.text().substr(0, 27)+"...");}

 

5 外鏈新視窗開啟
$("a[@href^=‘http‘]").attr(‘target‘,‘_blank‘);

 

6 測試JQuery與其它庫衝突情況
//測試衝突代碼$("#jqtest").click( function() {   alert("jQuery is working!");});//避免衝突var $jq = jQuery.noConflict();$jq("#jqtest").click( function() {   alert("jQuery is working!");});

 

7 載入JQuery即使CDN掉線
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><script>window.jQuery || document.write(‘<script src="/media/js/jquery.js"><\/script>‘)</script>

 

8 載入遮罩層,點擊移除
$(‘<div id="overlay"></div>‘).css({    position    : ‘fixed‘,    top         : 0,    left        : 0,    right       : 0,    bottom      : 0,    opacity     : 0.6,    background  : ‘black‘,    display     : ‘none‘}).appendTo(‘body‘).fadeIn(‘normal‘).click(function () {    $(this).fadeOut(‘normal‘, function () {        $(this).remove();    })});

 

9 元素固頂
//注意調整邊界值$(window).scroll(function() {    if ($(window).scrollTop() > 100) {        $(‘#navbar‘).css({‘position‘ : ‘fixed‘, ‘top‘ : 0});    } else {        $(‘#navbar‘).css({‘position‘ : ‘relative‘, ‘top‘ : ‘none‘});    }});

 

10 禁止右鍵菜單
$(document).bind(‘contextmenu‘, function () {    return false;})

 

11 對象外掛程式模版代碼
(function($){   var MyPlugin = function(element, options) {       var elem = $(element);       var obj = this;       var settings = $.extend({param: ‘defaultValue‘}, options || {});       // 公有方法       this.publicMethod = function(){           console.log(‘public method called!‘);       };       // 私人方法       var privateMethod = function() {           console.log(‘private method called!‘);       };   };   $.fn.myplugin = function(options) {       return this.each(function(){           var element = $(this);           // Return early if this element already has a plugin instance           if (element.data(‘myplugin‘)) return;           // pass options to plugin constructor           var myplugin = new MyPlugin(this, options);           // Store plugin object in this element‘s data           element.data(‘myplugin‘, myplugin);       });   };})(jQuery);

 

 

很實用的JQuery程式碼片段(轉)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.