`
annan211
  • 浏览: 460912 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

jQuery 15个精彩片段

 
阅读更多
1.预加载图片
(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
jQuery.preLoadImages("image1.gif", "/path/to/image2.png");
 


  源码

  2. 让页面中的每个元素都适合在移动设备上展示
var scr = document.createElement('script');
scr.setAttribute('src', 'https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js');
document.body.appendChild(scr);
scr.onload = function(){
    $('div').attr('class', '').attr('id', '').css({
        'margin' : 0,
        'padding' : 0,
        'width': '100%',
        'clear':'both'
    });
};
 


  源码

 3.图像等比例缩放

$(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 > maxWidth){
            ratio = maxWidth / width;
            $(this).css("width", maxWidth);
            $(this).css("height", height * ratio);
            height = height * ratio;
        }
        var width = $(this).width();
        var height = $(this).height();
        if(height > maxHeight){
            ratio = maxHeight / height;
            $(this).css("height", maxHeight);
            $(this).css("width", width * ratio);
            width = width * ratio;
        }
    });
    //$("#contentpage img").show();
    // IMAGE RESIZE
});
 


  源码

  4.返回页面顶部
 
// Back To Top
$(document).ready(function(){ 
  $('.top').click(function() {  
     $(document).scrollTo(0,500);  
  });
}); 
//Create a link defined with the class .top
<a href="#" class="top">Back To Top</a>
 

  源码

  5.使用jQuery打造手风琴式的折叠效果

var accordion = {
     init: function(){
           var $container = $('#accordion');
           $container.find('li:not(:first) .details').hide();
           $container.find('li:first').addClass('active');
           $container.on('click','li a',function(e){
                  e.preventDefault();
                  var $this = $(this).parents('li');
                  if($this.hasClass('active')){
                         if($('.details').is(':visible')) {
                                $this.find('.details').slideUp();
                         } else {
                                $this.find('.details').slideDown();
                         }
                  } else {
                         $container.find('li.active .details').slideUp();
                         $container.find('li').removeClass('active');
                         $this.addClass('active');
                         $this.find('.details').slideDown();
                  }
           });
     }
};
 


  6.通过预加载图片廊中的上一幅下一幅图片来模仿Facebook的图片展示方式
 
var nextimage = "/images/some-image.jpg";
$(document).ready(function(){
window.setTimeout(function(){
var img = $("").attr("src", nextimage).load(function(){
//all done
});
}, 100);
});
 


  源码

  7.使用jQuery和Ajax自动填充选择框
 
$(function(){
$("select#ctlJob").change(function(){
$.getJSON("/select.php",{id: $(this).val(), ajax: 'true'}, function(j){
var options = '';
for (var i = 0; i < j.length; i++) {
options += '
' + j[i].optionDisplay + '
';
}
$("select#ctlPerson").html(options);
})
})
})
 


  源码

  8.自动替换丢失的图片
 
// Safe Snippet
$("img").error(function () {
    $(this).unbind("error").attr("src", "missing_image.gif");
});
// Persistent Snipper
$("img").error(function () {
    $(this).attr("src", "missing_image.gif");
});
 

  源码

  9.在鼠标悬停时显示淡入/淡出特效
 
$(document).ready(function(){
    $(".thumbs img").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
    $(".thumbs img").hover(function(){
        $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
    },function(){
        $(this).fadeTo("slow", 0.6); // This should set the opacity back to 60% on mouseout
    });
});
 


  源码

  10.清空表单数据
function clearForm(form) {
  // iterate over all of the inputs for the form
  // element that was passed in
  $(':input', form).each(function() {
    var type = this.type;
    var tag = this.tagName.toLowerCase(); // normalize case
    // it's ok to reset the value attr of text inputs,
    // password inputs, and textareas
    if (type == 'text' || type == 'password' || tag == 'textarea')
      this.value = "";
    // checkboxes and radios need to have their checked state cleared
    // but should *not* have their 'value' changed
    else if (type == 'checkbox' || type == 'radio')
      this.checked = false;
    // select elements need to have their 'selectedIndex' property set to -1
    // (this works for both single and multiple select elements)
    else if (tag == 'select')
      this.selectedIndex = -1;
  });
};
 


  源码

  11.预防对表单进行多次提交

 
$(document).ready(function() {
  $('form').submit(function() {
    if(typeof jQuery.data(this, "disabledOnSubmit") == 'undefined') {
      jQuery.data(this, "disabledOnSubmit", { submited: true });
      $('input[type=submit], input[type=button]', this).each(function() {
        $(this).attr("disabled", "disabled");
      });
      return true;
    }
    else
    {
      return false;
    }
  });
});
 


  源码

  12.动态添加表单元素

 
//change event on password1 field to prompt new input
$('#password1').change(function() {
        //dynamically create new input and insert after password1
        $("#password1").append("");
});
 

  源码

  13.让整个Div可点击
 
blah blah blah. link
The following lines of jQuery will make the entire div clickable: $(".myBox").click(function(){ window.location=$(this).find("a").attr("href"); return false; });
 


  源码

  14.平衡高度或Div元素

 
var maxHeight = 0;
$("div").each(function(){
   if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
$("div").height(maxHeight);
 

  源码

  15. 在窗口滚动时自动加载内容

 
var loading = false;
$(window).scroll(function(){
    if((($(window).scrollTop()+$(window).height())+250)>=$(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);
});
 
分享到:
评论

相关推荐

    50个精彩JQuery插件案例

    本文将详细介绍"50个精彩jQuery插件案例"所涵盖的知识点,帮助你实现更加精彩的页面效果。 1. **jQuery插件的原理**:jQuery插件是基于jQuery核心功能扩展的功能模块,通过$.fn.extend()方法,将新方法添加到jQuery...

    JQuery十个适合初学者实例

    JQuery十个适合初学者实例--对初学Jquery的朋友来说还是不错了,通过实例学习,当初我自己就是通过这个学习了Juery,希望对你也有用处。JQuery第一课-tab标签页、JQuery第二课-多张图的无缝滚动、JQuery第三课-图片...

    30个jquery经典Demo

    《jQuery经典Demo详解:探索30个精彩实例》 jQuery,作为一款强大的JavaScript库,以其简洁的API和高效的功能,深受Web开发者的喜爱。这里我们聚焦于30个经典的jQuery Demo,它们涵盖了从基础交互到复杂动画的各种...

    jquery15.rar

    《15天学会jQuery》教程概述 jQuery是一个广泛使用的JavaScript库,它极大地简化了JavaScript的DOM操作、事件处理、动画制作以及Ajax交互。本教程针对初学者,旨在帮助您在短短15天内掌握jQuery的核心概念和技术,...

    jquery 经典实例15个

    这个“jquery经典实例15个”的压缩包文件显然包含了一些能够帮助用户快速掌握jQuery核心概念和实用技巧的示例。下面我们将深入探讨这些经典实例所涵盖的知识点。 1. **选择器**: jQuery的选择器是其强大功能之一,...

    jQuery中文参考手册(附jquery1.26)

    jQuery 是一个新型的JavaScript库. jQuery是一个简洁快速的JavaScript库,它能让你在你的网页上简单的操作文档、处理事件、运行动画效果或者添加Ajax交互。jQuery的设计会改变你写JavaScript代码的方式。 jQuery...

    15个jquery常用案例源码

    这里我们探讨的"15个jquery常用案例源码"集合,提供了多种实用功能的示例代码,可以帮助开发者快速理解和应用jQuery在实际项目中的各种场景。 1. **百度搜索下拉代码**:这个案例模拟了百度搜索框的下拉提示功能,...

    《15天精通jQuery》教程 pdf

    《15天精通jQuery》 是一个网络作者谈对JQUERY的看法,包括认识JQUERY,使用jQuery等。15天精通jQuery虽然有点夸张,但至少可以让你对jQuery有一个系统的了解。  有一天当我突然看到一些用jQuery 写的代码时我一下...

    JQUERY的一个js文件

    **jQuery 是一个广泛使用的 JavaScript 库,它极大地简化了网页的动态交互和DOM操作。标题中的 "JQUERY的一个js文件" 指的是这个库的一个特定版本的源代码文件。** **描述中提到的 "需要的可以下载了,不会在帖子...

    直接拿来用的15个jQuery代码片段

    标题中提到的是“直接拿来用的15个jQuery代码片段”,这表明本文将分享十五个可以直接应用于项目中的实用jQuery代码片段。jQuery是广泛使用的一个JavaScript库,它简化了HTML文档遍历、事件处理、动画以及AJAX交互...

    JQuery 15种经典案例

    JQuery 是一个强大的JavaScript库,它极大地简化了HTML文档遍历、...以上十五个案例覆盖了JQuery在网页开发中的多种应用场景,通过学习和实践这些案例,开发者能够更好地掌握JQuery库,为网站增添更多交互性和吸引力。

    jquery教程 15天学会jquery(完整版)

    3. **链式操作**:理解jQuery对象的链式调用,如何在一个方法调用后立即执行另一个方法。 4. **DOM操作**:学习如何使用jQuery选择并操作DOM元素,包括获取和设置属性、内容、CSS样式。 **第2天:jQuery事件处理** ...

    50个Jquery经典实例

    **jQuery 是一个高效、简洁且功能丰富的 JavaScript 库,它极大地简化了网页的交互和动画效果的实现。本文将深入探讨50个jQuery经典实例,这些实例覆盖了jQuery的多种核心功能,包括DOM操作、事件处理、动画效果、...

    jquery中文版离线手册

    这个离线手册包含了2012年12月15日版本的jQuery 1.8.3,对于那个时期的项目来说,这是一个广泛使用的稳定版本。 **jQuery的核心特性**: 1. **选择器**:jQuery提供了强大的CSS选择器,使得选取DOM元素变得非常简单...

    电子书 15天学会Jquery

    在15天的学习旅程中,你将从以下几个方面深入了解jQuery: 1. **jQuery基础知识**:首先,你会了解jQuery的基本用法,包括如何引入jQuery库,以及使用$(document).ready()方法确保代码在页面加载完毕后执行。此外,...

    JavaScript_JQuery_CSS_CSS_DIV漂亮的实例123个

    2. jquery+css五屏焦点图淡入淡出+圆形按钮切换广告图片代码 3. jQuery+CSS实用图片收缩与放大效果插件 4. jquery+div实现同时滑动切换的图文展示特效插件下载 5. jquery+div带动画按钮图片手动与自动切换的...

    jquery时间控件时分秒

    在网页开发中,jQuery是一个非常流行的JavaScript库,它极大地简化了DOM操作、事件处理和动画效果。而"jquery时间控件时分秒"是jQuery的一个扩展插件,用于创建用户友好的时间选择器,帮助用户方便地输入或选择时间...

    15天学会jQuery

    jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript...

    jQuery中文资料电子书教程

    - `15天学会jQuery` 可能是一个快速学习计划或课程大纲,指导读者在15天内掌握jQuery的主要功能。 5. **其他辅助资料**: - `jquery1.4.1简体中文提示.txt` 可能是针对jQuery 1.4.1版本的一些简体中文提示和技巧...

    50个jquery漂亮实例

    "50个jquery漂亮实例"这个压缩包文件集合了五十个精心设计的jQuery代码示例,旨在帮助开发者快速理解和掌握jQuery的各种功能和应用场景。 1. **DOM操作**:jQuery提供了简便的DOM选择器,如`$("#id")`选择ID为id的...

Global site tag (gtag.js) - Google Analytics