天天看点

12 个非常实用的 jQuery 代码片段

jquery是一个非常流行而且实用的javascript前端框架,本文并不是介绍jquery的特效动画,而是分享一些平时积累的12个jquery实用代码片段,希望对你有所帮助。

1. 导航菜单背景切换效果

在项目的前端页面里,相对于其它的导航菜单,激活的导航菜单需要设置不同的背景。这种效果实现的方式有很多种,下面是使用<code>jquery</code>实现的一种方式:

&lt;ul id='nav'&gt; 

    &lt;li&gt;导航一&lt;/li&gt; 

    &lt;li&gt;导航二&lt;/li&gt; 

    &lt;li&gt;导航三&lt;/li&gt; 

&lt;/ul&gt; 

//注意:代码需要修饰完善 

$('#nav').click(function(e) { 

  // 要知道siblings的使用 

$(e.target).addclass('tclass').siblings('.tclass').removeclass('tclass');; 

    }); 

2.反序访问jquery对象里的元素

在某些场景下,我们可能需要反序访问通过jquery选择器获取到的页面元素对象,这个怎么实现呢?看下面代码:

//要掌握jquery对象的get方法 以及数组的reverse方法即可 

var arr = $('#nav').find('li').get().reverse(); 

$.each(arr,function(index,ele){ 

     .... ... 

}); 

3.访问iframe里的元素

在大多数情况下,<code>iframe</code>并不是好的解决方案,但由于各种原因,项目中确实用到了<code>iframe</code>,所以你需要知道怎么去访问<code>iframe</code>里的元素

var iframedom = $("iframe#someid").contents(); 

//然后,就可以通过find方法来遍历获取iframe中的元素了 

iframedom.find(".message").slideup(); 

4. 管理搜索框的值

现在各大网站都有搜索框,而搜索框通常都有默认值,当输入框获取焦点时,默认值消失。而一旦输入框失去焦点,而输入框里又没有输入新的值,输入框里的值又会恢复成默认值,如果往输入框里输入了新值,则输入框的值为新输入的值。这种特效用<code>jquery</code>很容易实现:

$("#searchbox") 

   .focus(function(){$(this).val('')}) 

   .blur(function(){ 

       var $this = $(this); 

      // '请搜索...'为搜索框默认值 

      ($this.val() === '')? $this.val('请搜索...') : null; 

5.部分页面加载更新

为了提高web性能,有更新时我们通常不会加载整个页面,而只是仅仅更新部分页面内容,如图片的延迟加载等。页面部分刷新的特效在<code>jquery</code>中也很容易实现:

setinterval(function() {   //每隔5秒钟刷新页面内容 

      //获取的内容将增加到 id为content的元素后 

     $("#content").load(url); 

}, 5000); 

6.采用data方法来缓存数据

在项目中,为了避免多次重复的向服务器请求数据,通常会将获取的数据缓存起来以便后续使用。通过<code>jquery</code>可以很优雅的实现该功能:

var cache = {}; 

$.data(cache,'key','value'); //缓存数据 

  //获取数据 

$.data(cache,'key'); 

7.采配置jquery与其它库的兼容性

如果在项目中使用<code>jquery</code>,<code>$</code> 是最常用的变量名,但<code>jquery</code>并不是唯一一个使用$作为变量名的库,为了避免命名冲突,你可以按照下面方式来组织你的代码:

//方法一: 为jquery重新命名为 $j 

var $j = jquery.noconflict(); 

$j('#id').... 

//方法二: 推荐使用的方式 

(function($){ 

    $(document).ready(function(){ 

        //这儿,你可以正常的使用jquery语法 

})(jquery); 

8.克隆table header到表格的最下面

为了让<code>table</code>具有更好的可读性,我们可以将表格的<code>header</code>信息克隆一份到表格的底部,这种特效通过<code>jquery</code>就很容易实现:

var $tfoot = $('&lt;tfoot&gt;&lt;/tfoot&gt;'); 

$($('thead').clone(true, true).children().get().reverse()).each(function(){ 

    $tfoot.append($(this)); 

$tfoot.insertafter('table thead'); 

9. 根据视窗(viewport)创建一个全屏宽度和高度(width/height)的div

下面代码完全可以让你根据<code>viewport</code>创建一个全屏的<code>div</code>。这对在不同窗口大小下展示<code>modal</code>或<code>对话框</code>时非常有效:

$('#content').css({ 

    'width': $(window).width(), 

    'height': $(window).height(), 

// make sure div stays full width/height on resize 

$(window).resize(function(){ 

    var $w = $(window); 

    $('#content').css({ 

      'width': $w.width(), 

      'height': $w.height(), 

10 测试密码的强度

在某些网站注册时常常会要求设置密码,网站也会根据输入密码的字符特点给出相应的提示,如密码过短、强度差、强度中等、强度强等。这又是怎么实现的呢?看下面代码:

&lt;input type="password" name="pass" id="pass" /&gt; 

&lt;span id="passstrength"&gt;&lt;/span&gt; 

//下面的正则表达式建议各位收藏哦,项目上有可能会用得着 

$('#pass').keyup(function(e) { 

      //密码为八位及以上并且字母数字特殊字符三项都包括 

     var strongregex = new regexp("^(?=.{8,})(?=.*[a-z])(?=.*[a-z])(?=.*[0-9])(?=.*\\w).*$", "g"); 

  //密码为七位及以上并且字母、数字、特殊字符三项中有两项,强度是中等 

     var mediumregex = new regexp("^(?=.{7,})(((?=.*[a-z])(?=.*[a-z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$", "g"); 

     var enoughregex = new regexp("(?=.{6,}).*", "g"); 

     if (false == enoughregex.test($(this).val())) { 

             $('#passstrength').html('more characters'); 

     } else if (strongregex.test($(this).val())) { 

             $('#passstrength').classname = 'ok'; 

             $('#passstrength').html('strong!'); 

     } else if (mediumregex.test($(this).val())) { 

             $('#passstrength').classname = 'alert'; 

             $('#passstrength').html('medium!'); 

     } else { 

             $('#passstrength').classname = 'error'; 

             $('#passstrength').html('weak!'); 

     } 

     return true; 

11.使用jquery重绘图片的大小

关于图片大小的重绘,你可以在服务端来实现,也可以通过<code>jquery</code>在客户端实现。

$(window).bind("load", function() { 

     // image resize 

     $('#product_cat_list img').each(function() { 

          var maxwidth = 120; 

          var maxheight = 120; 

          var ratio = 0; 

          var width = $(this).width(); 

          var height = $(this).height(); 

          if(width &gt; maxwidth){ 

           ratio = maxwidth / width; 

           $(this).css("width", maxwidth); 

           $(this).css("height", height * ratio); 

           height = height * ratio; 

          } 

          if(height &gt; maxheight){ 

           ratio = maxheight / height; 

           $(this).css("height", maxheight); 

           $(this).css("width", width * ratio); 

           width = width * ratio; 

     }); 

     //$("#contentpage img").show(); 

12.滚动时动态加载页面内容

有些网站的网页内容不是一次性加载完毕的,而是在鼠标向下滚动时动态加载的,这是怎么做到的呢?看下面代码:

var loading = false; 

$(window).scroll(function(){ 

if((($(window).scrolltop()+$(window).height())+250)&gt;=$(document).height()){ 

      if(loading == false){ 

           loading = true; 

           $('#loadingbar').css("display","block"); 

           $.get("load.php?start="+$('#loaded_max').val(), function(loaded){ 

                $('body').append(loaded); 

                $('#loaded_max').val(parseint($('#loaded_max').val())+50); 

                $('#loadingbar').css("display","none"); 

                loading = false; 

           }); 

      } 

$(document).ready(function() { 

$('#loaded_max').val(50); 

来源:51cto

继续阅读