JQuery 實用的代碼片斷

JQuery 實用的代碼片斷javascript

如今前臺開發少不了會使用的 jquery. JQuery 是 JavaScript 最流行的庫。能大大加速咱們操做 HTML 元素。而且保證不一樣瀏覽器的兼容性,下面就來一些經常使用的 操做實例吧。css

禁止右鍵

對於一些網站內容,咱們並不想訪客能直接複製,咱們這裏能夠採用最簡單的限制,就是禁止用戶右鍵操做了。html

$(document).ready(function() {  
    //catch the right-click context menu  
    $(document).bind("contextmenu",function(e) {                   
        //warning prompt - optional  
        alert("No right-clicking!");

        //delete the default context menu  
        return false;  
    });  
});

調整文字大小

如下的代碼片斷正式使用戶可以自定義文字大小的方法java

$(document).ready(function() {
    //find the current font size
    var originalFontSize = $('html').css('font-size');

    //Increase the text size
    $(".increaseFont").click(function() {
        var currentFontSize = $('html').css('font-size');
        var currentFontSizeNumber = parseFloat(currentFontSize, 10);

        var newFontSize = currentFontSizeNumber*1.2;
        $('html').css('font-size', newFontSize);
        return false;
    });

    //Decrease the Text Size
    $(".decreaseFont").click(function() {
        var currentFontSize = $('html').css('font-size');
        var currentFontSizeNum = parseFloat(currentFontSize, 10);

        var newFontSize = currentFontSizeNum*0.8;
        $('html').css('font-size', newFontSize);
        return false;
    });

    // Reset Font Size
    $(".resetFont").click(function(){
    $('html').css('font-size', originalFontSize);
  });
});

在新窗口打開連接。

$(document).ready(function() {
    //select all anchor tags that have http in the href
    //and apply the target=_blank
    $("a[href^='http']").attr('target','_blank');
});

樣式交換

$(document).ready(function() {
    $("a.cssSwap").click(function() { 
        //swap the link rel attribute with the value in the rel    
        $('link[rel=stylesheet]').attr('href' , $(this).attr('rel')); 
    }); 
});

回到頂部

$(document).ready(function() {
    //when the link is clicked
    $('#top').click(function() {
        //scoll the page back to the top
        $(document).scrollTo(0,500);
    }
});

獲取鼠標的座標

$().mousemove(function(e){
    //display the x and y axis values inside the P element
    $('p').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
});

查看當前鼠標座標

$(document).ready(function() {
$().mousemove(function(e){
    $('# MouseCoordinates ').html("X Axis Position = " + e.pageX + " and Y Axis Position = " + e.pageY);
});

圖片預加載

可以更加快速的加載當前網站。不用等待圖片加載jquery

jQuery.preloadImagesInWebPage = function() {
    for (var ctr = 0; ctr < arguments.length; ctr++) {
        jQuery("").attr("src", arguments[ctr]);
    }
}

使用方法:$.preloadImages("image1.gif", "image2.gif", "image3.gif"); 檢查圖片是否加載完成: 瀏覽器

$('#imageObject').attr('src', 'image1.gif').load(function() {
    alert('The image has been loaded…');
});
相關文章
相關標籤/搜索