博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>
希尔排序法(缩小增量法)
查看>>
PHP编程基础学习(一)——数据类型
查看>>
MongoDB-JAVA-Driver 3.2版本常用代码全整理(2) - 查询
查看>>
NPOI处理Word文本中上下角标
查看>>
Android笔记 Handler
查看>>
如何阅读大型前端开源项目的源码(转)
查看>>
java.util.Arrays类详解
查看>>
idea搭建tocmat
查看>>
NYOJ-626-intersection set(二分查找)
查看>>
项目管理之路(1):初步踏入项目管理
查看>>
Java 中 静态方法与非静态方法的区别
查看>>
crypto加密
查看>>
echarts饼图显示百分比
查看>>
JMS消息
查看>>
16位整数,32位整数,64位整数
查看>>
Jenkins+ProGet+Windows Batch搭建全自动的内部包(NuGet)打包和推送及管理平台
查看>>
php上传文件及头像预览
查看>>
大四java实习生的一些经历
查看>>