博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
非常好的javascript 代码
阅读量:5260 次
发布时间:2019-06-14

本文共 1965 字,大约阅读时间需要 6 分钟。

 

与其他Javascript类库冲突解决方案$(document).ready(function() {var $jq = jQuery.noConflict();$jq('#id').show();});
使元素居屏幕中间位置$(document).ready(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(); });

 

使整个DIV可点击 $(document).ready(function() {$("div").click(function(){window.location=$(this).find("a").attr("href"); return false; }); // how to use 
});
jQuery延时加载功能view plaincopy to clipboardprint?$(document).ready(function() {window.setTimeout(function() { }, 1000); });
获得鼠标指针XY值 $(document).ready(function() { $().mousemove(function(e){ $('#XY').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY); }); // how to use
});
返回页面顶部功能 $(document).ready(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}, 900); return false; }} }); // how to use  go to top });
页面样式切换 $(document).ready(function() { $("a.Styleswitcher").click(function() { $('link[rel=stylesheet]').attr('href' , $(this).attr('rel'));});// how to use 
// the links Default ThemeRed ThemeBlue Theme});
预加载图片 $(document).ready(function() { jQuery.preloadImages = function() { for(var i = 0; i").attr("src", arguments[i]); }};// how to use$.preloadImages("image1.jpg"); });
禁止右键点击 $(document).ready(function(){$(document).bind("contextmenu",function(e){ return false;});});

 

用下面方法,可以简单又可靠的得到一个变量是否一个数组:Object.prototype.toString.apply(value) === '[object Array]'

 

转载于:https://www.cnblogs.com/laopo/p/6174583.html

你可能感兴趣的文章
English trip -- VC(情景课)5 C It's on Main Street 在主街上
查看>>
[剑指Offer] 20.包含min函数的栈
查看>>
Ant -----ant标签和自定义任务
查看>>
Docker: repository, image, container
查看>>
Dijkstra算法
查看>>
laravel4.2 union联合,join关联分组查询最新记录时,查询条件不对,解决方案
查看>>
架构之数据库分表分库
查看>>
三星 S4 手机误删除相片(相册)后的恢复问题,仅记录处理过程,其它Android手机同样适用...
查看>>
【pattern】设计模式(2) - 模版方法模式
查看>>
SSM商城系统开发笔记-问题01-通配符的匹配很全面, 但无法找到元素 'mvc:annotation-driven' 的声明。...
查看>>
nyoj--84--阶乘的0(数学技巧)
查看>>
Creational --- Singleton
查看>>
JAVA-随机生成四则运算
查看>>
vue 创建监听,和销毁监听(addEventListener, removeEventListener)
查看>>
Java使用JAX-WS来写webservice时 Unable to create JAXBContext
查看>>
Merge k Sorted Lists
查看>>
用IDEA搭建基于maven的springboot项目
查看>>
[android](学习笔记6)为应用程序添加对话框(1)
查看>>
windows下mongodb安装与使用
查看>>
rotate the clock
查看>>