1、 去除页面的右键菜单 $(function(){  
    $(document).bind("contextmenu",function(e){  
        return false;  
    });  
});
2、搜索输入框文字的消失
当鼠标获得焦点、失去焦点的时候,input输入框文字处理:
$(function(){
    $("input.text1").val("Enter your search text here");
    textFill($(‘input.text1‘));
});
function textFill(input){ //input focus text function 
    var originalvalue = input.val();  
    input.focus( function(){  
        if( $.trim(input.val()) == originalvalue ){ input.val(”); }  
    });  
    input.blur( function(){  
        if( $.trim(input.val()) == ” ){ input.val(originalvalue); }  
    });  
}
3、新窗口打开页面
$(function() {  
   //Example 1: Every link will open in a new window  
   $(‘a[href^="http://"]‘).attr("target", "_blank");  
   //Example 2: Links with the rel="external" attribute will only open in a new window  
   $(‘a[@rel$="external"]‘).click(function(){  
      this.target = "_blank";  
   });  
});
 
// how to use
<a href="http://www.opensourcehunter.com" rel="external">open link</a>
4、判断浏览器类型
注意: jQuery 1.4中$.support 来代替以前的$.browser 
$(function() {  
    // Target Firefox 2 and above  
    if ($.browser.mozilla && $.browser.version >= "1.8" ){  
        // do something  
    }    
    // Target Safari  
    if( $.browser.safari ){  
        // do something  
    }    
    // Target Chrome  
    if( $.browser.chrome){  
        // do something  
    }    
    // Target Camino  
    if( $.browser.camino){  
        // do something  
    }    
    // Target Opera  
    if( $.browser.opera){  
        // do something  
    }    
    // Target IE6 and below  
    if ($.browser.msie && $.browser.version <= 6 ){  
        // do something  
    }    
    // Target anything above IE6  
    if ($.browser.msie && $.browser.version > 6){  
        // do something  
    }  
});
5、轻松切换css样式
$(function() {  
    $("a.Styleswitcher").click(function() {  
        //swicth the LINK REL attribute with the value in A REL attribute  
        $(‘link[rel=stylesheet]‘).attr(‘href‘ , $(this).attr(‘rel‘));  
    });
});
// how to use
// place this in your header
<link rel="stylesheet" href="default.css" type="text/css">  
// the links  
<a href="#" class="Styleswitcher" rel="default.css">Default Theme</a>  
<a href="#" class="Styleswitcher" rel="red.css">Red Theme</a>  
<a href="#" class="Styleswitcher" rel="blue.css">Blue Theme</a>
6、高度相等的列
$(function() {  
    function equalHeight(group) {  
        tallest = 0;  
        group.each(function() {  
            thisHeight = $(this).height();  
            if(thisHeight > tallest) {  
                tallest = thisHeight;  
            }  
        });  
        group.height(tallest);  
    }  
    // how to use  
    $(function() {  
        equalHeight($(".left"));  
        equalHeight($(".right"));  
    });  
});
7、简单字体变大缩小
$(function() {
    // Reset the font size(back to default)
    var originalFontSize = $(‘html‘).css(‘font-size‘);
    $(".resetFont").click(function(){
        $(‘html‘).css(‘font-size‘, originalFontSize);  
  });  
  // Increase the font size(bigger font0
  $(".increaseFont").click(function(){
      var currentFontSize = $(‘html‘).css(‘font-size‘);
      var currentFontSizeNum = parseFloat(currentFontSize, 10);
      var newFontSize = currentFontSizeNum*1.2;
      $(‘html‘).css(‘font-size‘, newFontSize);
      return false;
    });  
  // Decrease the font size(smaller font)  
  $(".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;
      });  
});
8、返回头部滑动动画
$(function(){
    $(‘a[href*=#]‘).click(function(){
        if (location.pathname.replace(/^\//,”) == this.pathname.replace(/^\//,”) && location.hostname == this.hostname){
            var $target = $(this.hash);
            $target = $target.length && $target || $(‘[name=' + this.hash.slice(1) +']‘);
            if ($target.length){
                var targetOffset = $target.offset().top;
                $(‘html,body‘).animate({scrollTop: targetOffset}, 500);
                return false;
            }
        }
    });
});
 
 
<a name="top"></a>  
// the link  
<a href="#top">go to top</a>
9、获取鼠标位置
$(function() {
    $(‘html‘).mousemove(function(e){  
         //display the x and y axis values inside the div with the id XY  
        $(‘#XY‘).html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);  
      }); 
});
 
<div id="XY"></div>
10、判断一个元素是否为空
if ($(‘#id‘).html()) {  
       // do something  
       }
11、替换元素
$(function() {
    $(‘#id‘).replaceWith(‘<div>I have been replaced</div>‘);
});
12、jquery timer 返回函数
$(function() {  
   window.setTimeout(function() {  
     // do something  
   }, 1000);  
});
13、jquery也玩替换
$(function() {  
   var el = $(‘#id‘);  
   el.html(el.html().replace(/word/ig, ""));  
});
14、判断元素是否存在
$(function() {  
   if ($(‘#id‘).length) {  
  // do something  
  }  
});
15、让div也可以click
$(function() {
    $("div").click(function(){  
      //get the url from href attribute and launch the url  
      window.location=$(this).find("a").attr("href"); return false;  
    });
});
 
<div><a href="index.html">home</a></div>
16、判断浏览器类型
$(function() {  
   function checkWindowSize() {  
    if ( $(window).width() > 1200 ) {  
        $(‘body‘).addClass(‘large‘);  
    }  
    else {  
        $(‘body‘).removeClass(‘large‘);  
    }  
   }  
$(window).resize(checkWindowSize);  
});
17、几个字符就clone!
$(function() {
    var cloned = $(‘#id‘).clone()
});
18、设置div在屏幕中央
$(function() {
   jQuery.fn.center = function () {
       this.css("position","absolute");
       this.css("top", ($(window).height()-this.height()) / 2+$(window).scrollTop() + "px");
       this.css("left", ($(window).width()-this.width()) / 2+$(window).scrollLeft() + "px");
       return this;
   }
   $("#id").center();
 });
19、创建自己的选择器
$(function() {  
   $.extend($.expr[':'], {  
       moreThen1000px: function(a) {  
           return $(a).width() > 1000;  
      }  
   });  
  $(‘.box:moreThen1000px‘).click(function() {  
      // creating a simple js alert box  
      alert(‘The element that you have clicked is over 1000 pixels wide‘);  
  });  
});
20、计算元素的数目
$(function() {  
   $("p").size();  
});
21、设置自己的li样式
$(function() {  
   $("ul").addClass("Replaced");  
   $("ul > li").prepend("? ");  
 // how to use  
 ul.Replaced { list-style : none; }  
});
22、关闭jquery动画效果
$(function() {  
    jQuery.fx.off = true;  
});
23、使用自己的jquery标识
$(function() {  
   var $jq = jQuery.noConflict();  
   $jq(‘#id‘).show();  
});
24、解决自定义方法或其他类库与jQuery的冲突
jQuery.noConflict(); 
// 开始使用jQuery
jQuery("div p").hide();
// 使用其他库的 $() 
$("content").style.display = ‘none‘;
25、如何获取jQuery集合的某一项
对于获取的元素集合,获取其中的某一项(通过索引指定)可以使用eq或get(n)方法或者索引号获取,要注意,eq返回的是jquery对象,而 get(n)和索引返回的是dom元素对象。对于jquery对象只能使用jquery的方法,而dom对象只能使用dom的方法,如要获取第三个div 元素的内容。有如下两种方法:
$("div").eq(2).html();              //调用jquery对象的方法
$("div").get(2).innerHTML;       //调用dom的方法属性
26、同一函数实现set和get
Jquery中的很多方法都是如此,主要包括如下几个:
$("#msg").html();              //返回id为msg的元素节点的html内容。
$("#msg").html("<b>new content</b>");      
//将“<b>new content</b>” 作为html串写入id为msg的元素节点内容中,页面显示粗体的new content
 
$("#msg").text();              //返回id为msg的元素节点的文本内容。
$("#msg").text("<b>new content</b>");      
//将“<b>new content</b>” 作为普通文本串写入id为msg的元素节点内容中,页面显示<b>new content</b>
 
$("#msg").height();              //返回id为msg的元素的高度
$("#msg").height("300");       //将id为msg的元素的高度设为300
$("#msg").width();              //返回id为msg的元素的宽度
$("#msg").width("300");       //将id为msg的元素的宽度设为300
 
$("input").val(");       //返回表单输入框的value值
$("input").val("test");       //将表单输入框的value值设为test
 
$("#msg").click();       //触发id为msg的元素的单击事件
$("#msg").click(fn);       //为id为msg的元素单击事件添加函数
同样blur,focus,select,submit事件都可以有这两种调用方法
27、集合处理功能
对于jquery返回的集合内容无需我们自己循环遍历并对每个对象分别做处理,jquery已经为我们提供的很方便的方法进行集合的处理。
包括两种形式:
$("p").each(function(i){this.style.color=['#f00','#0f0','#00f']})      
//为索引分别为0,1,2的p元素分别设定不同的字体颜色。
 
$("tr").each(function(i){this.style.backgroundColor=['#ccc','#fff'][i%2]})      
//实现表格的隔行换色效果
 
$("p").click(function(){alert($(this).html())})             
//为每个p元素增加了click事件,单击某个p元素则弹出其内容
28、扩展我们需要的功能
$.extend({
       min: function(a, b){return a < b?a:b; },
       max: function(a, b){return a > b?a:b; }
});       //为jquery扩展了min,max两个方法
使用扩展的方法(通过“$.方法名”调用):
alert("a=10,b=20,max="+$.max(10,20)+",min="+$.min(10,20));
29、支持方法的连写
所谓连写,即可以对一个jquery对象连续调用各种不同的方法。
例如:
$("p").click(function(){alert($(this).html())})
.mouseover(function(){alert(‘mouse over event‘)})
.each(function(i){this.style.color=['#f00','#0f0','#00f']});
30、操作元素的样式
主要包括以下几种方式:
$("#msg").css("background");              //返回元素的背景颜色
$("#msg").css("background","#ccc")       //设定元素背景为灰色
$("#msg").height(300); $("#msg").width("200");       //设定宽高
$("#msg").css({ color: "red", background: "blue" });//以名值对的形式设定样式
$("#msg").addClass("select");       //为元素增加名称为select的class
$("#msg").removeClass("select");       //删除元素名称为select的class
$("#msg").toggleClass("select");       //如果存在(不存在)就删除(添加)名称为select的class
31、几个实用特效功能
其中toggle()和slidetoggle()方法提供了状态切换功能。
如toggle()方法包括了hide()和show()方法。
slideToggle()方法包括了slideDown()和slideUp方法。
32、几个有用的jQuery方法
$.each(obj, fn):通用的迭代函数。可用于近似地迭代对象和数组(代替循环)。

$.each( [0,1,2], function(i, n){ alert( "Item #" + i + ": " + n ); });
$.extend(target,prop1,propN):用一个或多个其他对象来扩展一个对象,返回这个被扩展的对象。这是jquery实现的继承方式。
如:
$.extend(settings, options);  
//合并settings和options,并将合并结果返回settings中,相当于options继承setting并将继承结果保存在 setting中。
var settings = $.extend({}, defaults, options);
//合并defaults和options,并将合并结果返回到setting中而不覆盖default内容。
可以有多个参数(合并多项并返回)
$.map(array, fn):数组映射。把一个数组中的项目(处理转换后)保存到到另一个新数组中,并返回生成的新数组。
如:
var tempArr=$.map( [0,1,2], function(i){ return i + 4; });
tempArr内容为:[4,5,6]
var tempArr=$.map( [0,1,2], function(i){ return i > 0 ? i + 1 : null; });
tempArr内容为:[2,3]
$.merge(arr1,arr2):合并两个数组并删除其中重复的项目。
如:
$.merge( [0,1,2], [2,3,4] )       //返回[0,1,2,3,4]
$.trim(str):删除字符串两端的空白字符。
如:
$.trim("  hello, how are you?   ");    //返回"hello,how are you? "

jQuery基础资料(二)相关推荐

  1. jQuery基础(二)

    慕课网视频总结 处理表单焦点 表单处理事件focusin事件与focusout事件,同样用于处理表单焦点的事件还有blur与focus事件 它们之间的本质区别: 是否支持冒泡处理 举个简单的例子 &l ...

  2. 微型计算机作为载体的部件是,大工11秋《计算机应用基础》辅导资料二

    计算机应用基础辅导资料二 主题:计算机基础知识的辅导资料 学习时间:2011年10月10日-10月16日 内容: 这周我们主要学习课件 ..第二章计算机的基础知识,本章的学习要求及需要掌握的重点内容如 ...

  3. jQuery基础知识整理

    jQuery基础知识整理 jQuery简介 什么是jQuery(了解) jQuery简化JS代码 jQuery的核心思想:"写的更少,但做的更多"(write less,do mo ...

  4. Jquery基础之DOM操作

    Jquery基础之DOM操作 Dom是Document Object Model的缩写,意思是文档对象模型.DOM是一种与浏览器.平台.语言无关的接口,使用该接口可以轻松访问页面中所有的标准组件.DO ...

  5. 第四篇 前端学习之JQuery基础

    一 jQuery是什么? jQuery就是一个JavaScript的库. <1> jQuery由美国人John Resig创建,至今已吸引了来自世界各地的众多 javascript高手加入 ...

  6. Ajax、jQuery基础入门视频教程

    关注公众号,免费获取资料 本视频是Ajax和jQuery基础入门视频,该视频针对接触过javaScript基础的学员录制,授课讲究通俗易懂.通过该视频的学习,相信您能够轻轻松松地掌握Ajax和jQue ...

  7. MySQL基础总结(二)

    MySQL基础总结(二) 文章目录 MySQL基础总结(二) 四.索引 7.MyISAM主键索引与辅助索引的结构 8.InnoDB主键索引与辅助索引的结构 **`主键索引`** **`辅助(非主键)索 ...

  8. (五)JS基础知识二(通过图理解原型和原型链)【三座大山之一,必考!!!】

    JS基础知识二(原型和原型链) 提问 class 继承 类型判断(instanceof) 原型 原型关系 基于原型的执行规则 原型链 说明 提问 如何准确判断一个变量是不是数组 class的原型本质 ...

  9. 《jQuery基础》总结

    目前,互联网上最好的jQuery入门教材,是Rebecca Murphey写的<jQuery基础>(jQuery Fundamentals).这本书虽然是入门教材,但也足足有100多页.我 ...

  10. 大数据基础学习二:在VMware虚拟机上安装Ubuntu完整步骤及需要注意的问题(以VMware Workstation 15.1.0 Pro和Ubuntu18.04.3优麒麟版为例)

    大数据基础学习二:在VMware虚拟机上安装Ubuntu完整步骤及需要注意的问题 (以VMware Workstation 15.1.0 Pro for Windows和Ubuntu18.04.3优麒 ...

最新文章

  1. 最强 Java Redis 客户端
  2. 重磅!2020中国高校毕业生月薪排名:清华第1,共计24高校月薪过万
  3. Install pysnmp for django
  4. C++ Primer 5th笔记(chap 12 动态内存)shared_ptr
  5. 使用Docker搭建Elasticsearch6.8.6集群及设置集群用户密码
  6. [剑指offer][JAVA]面试题第[03]题[数组中的重复数字][HashSet]
  7. 计算机按应用可分为几类,计算机按性能可以分为哪几类
  8. 安利几个优秀的开源电商系统
  9. HS0038红外接收模块遇到的问题
  10. 嵌入SpreadJS,赋能计量器具检定信息化
  11. 关于Chrome沙箱技术(沙盒技术)
  12. vue 数据看板大屏适配方案
  13. 分享暄桐好作业之《灵飞经》,静观春意生长
  14. BIOS14: Hypothesis testing(假设检验)using R
  15. 三年级计算机绘画第二课堂教案,第二课堂活动计划15篇
  16. Linux系统---Discuz论坛网站创建部署
  17. go语言和python对比-对比平台--Python与Go之间的差异
  18. Word中公式变量解释时破折号对齐方法
  19. 2021武汉建港中学高考成绩查询,2021年武汉各区一、二、三批次高中有哪些(名单)...
  20. Zookeeper Leader选举 源码中,发送投票,统计投票的不解

热门文章

  1. redis慢查询日志,php安装redis扩展,redis存储session,redis主从配置
  2. OSChina 周日乱弹 —— 普通人如何面对持刀歹徒
  3. git+coding.net记录篇
  4. 安装部署shipyard
  5. Scala的那些匿名函数
  6. windows和linux 下将tomcat注册为服务
  7. C# WinFrom 对字符进行UTF-8编码
  8. 21.实例 --- location
  9. PHP中的错误处理set_error_handler()与trigger_error()的问题
  10. Python-运算符和其优先级