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…');
});
相关文章
相关标签/搜索