开发中可能会用到的几个 jQuery 小提示和技巧

  在开发 Web 应用的时候,有些情况需要禁用右键单击功能。使用此代码,jQuery 开发人员可以在网页上禁用鼠标右键点击。代码如下:

1
2
3
4
5
6
7
8
9
10
$(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
        returnfalse;
    });
});

  2) 文本缩放

  使用下面的代码,用户可以更具需要增大或者缩放网页中的字体大小,代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
$(document).ready(function() {
    //find the current font size
    varoriginalFontSize = $('html').css('font-size');
 
    //Increase the text size
    $(".increaseFont").click(function() {
        varcurrentFontSize = $('html').css('font-size');
        varcurrentFontSizeNumber = parseFloat(currentFontSize, 10);
 
        varnewFontSize = currentFontSizeNumber*1.2;
        $('html').css('font-size', newFontSize);
        returnfalse;
    });
 
    //Decrease the Text Size
    $(".decreaseFont").click(function() {
        varcurrentFontSize = $('html').css('font-size');
        varcurrentFontSizeNum = parseFloat(currentFontSize, 10);
 
        varnewFontSize = currentFontSizeNum*0.8;
        $('html').css('font-size', newFontSize);
        returnfalse;
    });
 
    // Reset Font Size
    $(".resetFont").click(function(){
    $('html').css('font-size', originalFontSize);
  });
});

nbfps.codeplex.com;
wxfpa.codeplex.com;
wxsfp.codeplex.com;
wxfpd.codeplex.com;
njfpz.codeplex.com;
njzsp.codeplex.com;
njfpx.codeplex.com;
cssfp.codeplex.com;
csfpc.codeplex.com;
csdfp.codeplex.com;
qdfpz.codeplex.com;
qdsdp.codeplex.com;
qdfpc.codeplex.com;
cqzfp.codeplex.com;
cqcfp.codeplex.com;
cqdfp.codeplex.com;
cddfp.codeplex.com;
cscfp.codeplex.com;
cdfpa.codeplex.com;
shzfp.codeplex.com;
skcfp.codeplex.com;
shdep.codeplex.com;
hebfp.codeplex.com;
hefpq.codeplex.com;
hefpw.codeplex.com;
cczfp.codeplex.com;
ccyfp.codeplex.com;
ccefp.codeplex.com;
syzfp.codeplex.com;

  3) 在新窗口打开链接

  使用这个 jQuery 代码,用户会点击你的网站的任何链接都会在新的窗口中打开。如下:

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

  4) 样式表切换

  你知道网站换肤是怎么做的吗?下面的代码可以帮助你实现样式表切换功能,如下:

1
2
3
4
5
6
$(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'));
    });
});

  5) 回到顶部

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值