- 浏览: 37210 次
- 性别:
- 来自: 上海
-
文章分类
最新评论
-
308655406:
讲了原理 讲了注意事项 居然没有举例讲怎么用。。。
jQuery 数据缓存data(name, value)详解及实现
jqyery参考 转
http://www.cnblogs.com/qgf522/archive/2010/03/01/1675515.html
1. 禁止右键点击
view plaincopy to clipboardprint?
1. $(document).ready(function(){
2. $(document).bind("contextmenu",function(e){
3. return false;
4. });
5. });
2. 隐藏搜索文本框文字view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("input.text1").val("Enter your search text here");
3. textFill($('input.text1'));
4. });
5.
6. function textFill(input){ //input focus text function
7. var originalvalue = input.val();
8. input.focus( function(){
9. if( $.trim(input.val()) == originalvalue ){ input.val(''); }
10. });
11. input.blur( function(){
12. if( $.trim(input.val()) == '' ){ input.val(originalvalue); }
13. });
14. }
3. 在新窗口中打开链接view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. //Example 1: Every link will open in a new window
3. $('a[href^="http://"]').attr("target", "_blank");
4.
5. //Example 2: Links with the rel="external" attribute will only open in a new window
6. $('a[@rel$='external']').click(function(){
7. this.target = "_blank";
8. });
9. });
10. // how to use
11. open link
4. 检测浏览器
注: 在版本jQuery 1.4中,$.support 替换掉了$.browser 变量。
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. // Target Firefox 2 and above
3. if ($.browser.mozilla && $.browser.version >= "1.8" ){
4. // do something
5. }
6.
7. // Target Safari
8. if( $.browser.safari ){
9. // do something
10. }
11.
12. // Target Chrome
13. if( $.browser.chrome){
14. // do something
15. }
16.
17. // Target Camino
18. if( $.browser.camino){
19. // do something
20. }
21.
22. // Target Opera
23. if( $.browser.opera){
24. // do something
25. }
26.
27. // Target IE6 and below
28. if ($.browser.msie && $.browser.version 6){
34. // do something
35. }
36. });
5. 预加载图片
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. jQuery.preloadImages = function()
3. {
4. for(var i = 0; i").attr("src", arguments[i]);
5. }
6. };
7. // how to use
8. $.preloadImages("image1.jpg");
9. });
6. 页面样式切换
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("a.Styleswitcher").click(function() {
3. //swicth the LINK REL attribute with the value in A REL attribute
4. $('link[rel=stylesheet]').attr('href' , $(this).attr('rel'));
5. });
6. // how to use
7. // place this in your header
8. <link href="default.css" type="text/css" rel="stylesheet">
9. // the links
10. Default Theme
11. Red Theme
12. Blue Theme
13. });
7. 列高度相同
如果使用了两个CSS列,使用此种方式可以是两列的高度相 同。
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. function equalHeight(group) {
3. tallest = 0;
4. group.each(function() {
5. thisHeight = $(this).height();
6. if(thisHeight > tallest) {
7. tallest = thisHeight;
8. }
9. });
10. group.height(tallest);
11. }
12. // how to use
13. $(document).ready(function() {
14. equalHeight($(".left"));
15. equalHeight($(".right"));
16. });
17. });
8. 动态控制页面字体大小
用户可以改变页面字体大小
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. // Reset the font size(back to default)
3. var originalFontSize = $('html').css('font-size');
4. $(".resetFont").click(function(){
5. $('html').css('font-size', originalFontSize);
6. });
7. // Increase the font size(bigger font0
8. $(".increaseFont").click(function(){
9. var currentFontSize = $('html').css('font-size');
10. var currentFontSizeNum = parseFloat(currentFontSize, 10);
11. var newFontSize = currentFontSizeNum*1.2;
12. $('html').css('font-size', newFontSize);
13. return false;
14. });
15. // Decrease the font size(smaller font)
16. $(".decreaseFont").click(function(){
17. var currentFontSize = $('html').css('font-size');
18. var currentFontSizeNum = parseFloat(currentFontSize, 10);
19. var newFontSize = currentFontSizeNum*0.8;
20. $('html').css('font-size', newFontSize);
21. return false;
22. });
23. });
9. 返回页面顶部功能
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $('a[href*=#]').click(function() {
3. if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
4. && location.hostname == this.hostname) {
5. var $target = $(this.hash);
6. $target = $target.length && $target
7. || $('[name=' + this.hash.slice(1) +']');
8. if ($target.length) {
9. var targetOffset = $target.offset().top;
10. $('html,body')
11. .animate({scrollTop: targetOffset}, 900);
12. return false;
13. }
14. }
15. });
16. // how to use
17. // place this where you want to scroll to
18.
19. // the link
20. go to top
21. });
11.获得鼠标指针XY值
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $().mousemove(function(e){
3. //display the x and y axis values inside the div with the id XY
4. $('#XY').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
5. });
6. // how to use
7.
8.
9. });
12. 验证元素是否为空
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. if ($('#id').html()) {
3. // do something
4. }
5. });
13. 替换元素
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $('#id').replaceWith('
3.
I have been replaced
4.
5. ');
6. });
14. jQuery延时加载功能view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. window.setTimeout(function() {
3. // do something
4. }, 1000);
5. });
15. 移除单词功能view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. var el = $('#id');
3. el.html(el.html().replace(/word/ig, ""));
4. });
16. 验证元素是否存在于Jquery对象集合中view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. if ($('#id').length) {
3. // do something
4. }
5. });
17. 使整个DIV可点击view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("div").click(function(){
3. //get the url from href attribute and launch the url
4. window.location=$(this).find("a").attr("href"); return false;
5. });
6. // how to use
7.
8.
9. });
18.ID与Class之间转换当改变Window大小时,在ID与Class之间切换
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. function checkWindowSize() {
3. if ( $(window).width() > 1200 ) {
4. $('body').addClass('large');
5. }
6. else {
7. $('body').removeClass('large');
8. }
9. }
10. $(window).resize(checkWindowSize);
11. });
19. 克隆对象view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. var cloned = $('#id').clone();
3. // how to use
4.
5.
6. });
20. 使元素居屏幕中间位置view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. jQuery.fn.center = function () {
3. this.css("position","absolute");
4. this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
5. this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
6. return this;
7. }
8. $("#id").center();
9. });
21. 写自己的选择器view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $.extend($.expr[':'], {
3. moreThen1000px: function(a) {
4. return $(a).width() > 1000;
5. }
6. });
7. $('.box:moreThen1000px').click(function() {
8. // creating a simple js alert box
9. alert('The element that you have clicked is over 1000 pixels wide');
10. });
11. });
22. 统计元素个数view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("p").size();
3. });
23. 使用自己的 Bulletsview plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("ul").addClass("Replaced");
3. $("ul > li").prepend("‒ ");
4. // how to use
5. ul.Replaced { list-style : none; }
6. });
24. 引用Google主机上的Jquery类库Let Google host the jQuery script for you. This can be done in 2 ways.
view plaincopy to clipboardprint?
1. //Example 1
2. <script src="http://www.google.com/jsapi"></script>
3. <script type="text/javascript">
4. google.load("jquery", "1.2.6");
5. google.setOnLoadCallback(function() {
6. // do something
7. });
8. </script><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
9.
10. // Example 2:(the best and fastest way)
11. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
25. 禁用Jquery(动画)效果
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. jQuery.fx.off = true;
3. });
26. 与其他Javascript类库冲突解决方案view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. var $jq = jQuery.noConflict();
3. $jq('#id').show();
4. });
相关推荐
在JavaScript的世界里,jQuery是一个非常流行且强大的库,它极大地简化了DOM操作、事件处理、动画效果以及Ajax交互。本教程将重点讲解如何利用jQuery来实现类似Flash的动态效果,但相比Flash,jQuery实现的效果更加...
"jqyery-corner-demo"是基于jQuery的一个插件,专门用于实现div元素的圆角效果。这个插件使得开发者无需手动编写复杂的CSS3代码,就能轻松地为网页中的各种矩形div添加圆角,极大地提高了开发效率。 首先,我们来...
这个“jqery中文帮助文档”包含了对jQuery核心功能的详细解释,旨在为初学者和进阶用户提供了全面的学习资源。 1. **jQuery选择器**:jQuery的核心功能之一是高效地选取DOM元素。它提供了丰富的选择器,如ID选择器...
jQueryAPI-100214.chw JqueryAPI 中文
配套博客https://blog.csdn.net/H200102/article/details/106985912,https://blog.csdn.net/H200102/article/details/106991221。 压缩包里包含JQuery的基础和高级内容的源码和笔记,JQuery的版本和文档。
在IT行业中,jQuery是一个广泛使用的JavaScript库,它简化了HTML文档遍历、事件处理、动画设计和Ajax交互。"jQuery筛选框文字查询代码.zip"是一个包含实现文本查询功能的资源包,适用于那些希望在网页中添加搜索筛选...
这个"jQuery手册下载(CHM版)"提供了一份详尽的参考资料,帮助开发者更深入地理解和运用jQuery。 **jQuery 的核心概念** 1. **选择器(Selectors)**:jQuery 的选择器基于CSS,允许开发者高效地选取页面中的HTML...
在提供的压缩包文件中,我们可以看到多个jQuery的API参考手册(如JQuery1.5API.chm和jQueryAPI-100214.chm),这些文档详细介绍了jQuery的所有方法、属性和选择器,是学习和查阅的好资源。此外,还有一些HTML文件...
jQuery案例有4个即1、手风琴显示图片效果2、方块旋转变色3、表格数据渲染删除操作 4、jquery写轮播图,也含有原生js轮播图案例,每个案例中代码注解很详细 通过案例练习熟悉jquery相关知识点
jQuery 实现轮播器是一种常见的网页动态效果,用于展示多张图片或内容并自动切换,以节省页面空间。本文将详细介绍如何使用 jQuery 来创建一个简单的轮播器,并讲解其核心实现原理。 首先,轮播器的基本原理是利用 ...
代码如下: $(function(){//脚本}) Jquery(function(){//脚本}) Jquery(document).ready(function(){//脚本}) 以上三个代码执行同一个动作,由于书写方便,所以Jquery比其他应用程序更受欢迎,但是当与其他js程序库...
在IT行业中,二维码(Quick Response Code)是一种二维条形码,用于存储各种信息,如网址、文本、联系人信息等。在网页开发中,利用JavaScript库如jQuery来生成二维码是常见的需求,尤其在移动互联网应用中,二维码...
汉诺塔是一个经典的递归问题,源于印度的一个古老传说,涉及到三个柱子和一堆不同大小的圆盘。在这个问题中,目标是将所有圆盘从第一个柱子(假设为A柱)移到第三个柱子(C柱),同时遵循以下规则: ...
在本案例中,我们讨论的是一个基于jQuery的弹出层插件——`jquery.popup.js`,它特别之处在于与`animate.css`的整合,实现了更加动态和丰富的视觉效果。 `animate.css`是一个开源的CSS3动画库,包含了大量的预定义...
资源名称:JQuery 学习总结及实例 中文WORD版内容简介:普通Javascript的缺点:每种控件的操作方式不统一,不同浏览器下有区别,要编写跨浏览器的程序非常麻烦。因此出现了很多对Javascript 的封装库,...
Jqyery 技术 后端 MySql开源数据库, Flyway开源数据库控制器 Stylefeng开源技术,SpringBoot开源框架技术 JWT 技术以及Redis 开源技术 Apache Shiro开源Java安全技术 beetl 与 Thymeleaf 开源模板引擎 Apache Maven ...
jqyery ajax $.ajax $.post 两种方式 此例子,分别用了两种处理方式实现, 用tomcat6.0 servlet jsp 调试很方便 下载解压后 直接用myeclipse导入,就可以调试,没有用数据库,适合新手学习。 如果调试不成功的,...
在本示例中,我们将探讨如何使用jQuery实现一个手动拖动控制的进度条效果。这个效果允许用户通过拖动一个可移动的按钮来改变进度条的填充宽度,从而直观地展示进度。以下是对实现该功能的关键知识点的详细解释: ...
一哥们儿要给图片添加鼠标经过时的边框效果,可惜出发点错了,直接加在了IMG外的A标签上致使 鼠标经过时图片产生塌陷,实则应该将边框控制直接加在IMG标签上即可 错误代码如下:注意红色部分设置 (出发点就错了) ...