JQuery 实用的代码片段

JQuery 实用的代码片段

现在前台开发少不了会使用的 jquery. JQuery 是 JavaScript 最流行的库。能大大加速我们操作 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;  
    });  
});

调整文字大小

以下的代码片段正式使用户能够自定义文字大小的方法

$(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.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…');
});

你可能感兴趣的:(jquery)