标签:style blog http io ar color os 使用 sp
jQuery.fx.off = true;
//这里是js代码 也就是给每个ul添加一个类名 然后给ul的子li前面添加html 你想要使用的Bullets $("ul").addClass("Replaced"); $("ul > li").prepend("? "); //在css里面这样写 ul.Replaced { list-style : none; }
$.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‘); });
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; } //宽度居中的位置应该就是窗口宽度减去当前元素宽度再除以2 最后减掉左部滚动宽度 高度同理 $("#id").center();
$().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); });
$(‘a[href*=#]‘).click(function() { if (location.pathname.replace(/^\//,‘‘) == this.pathname.replace(/^\//,‘‘) && location.hostname == this.hostname) {//为什么会用replace呢 后来想想明白了 因为很多url里面会有双重的/这样replace之后再比较比如好 var $target = $(this.hash); $target = $target.length && $target|| $(‘[name=‘ + this.hash.slice(1) +‘]‘);//写这么晦涩的语法 意思就是说当前a元素的hash长度必须大于0并且不为undefined 则去找name等于获得的hash值的元素 if ($target.length) { var targetOffset = $target.offset().top;//获得目标元素的高度 $(‘html,body‘).animate({scrollTop: targetOffset}, 900);
return false; } } });
//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"; });
收集的一些jQuery (我平常用的少的,但确实挺有效果的)
标签:style blog http io ar color os 使用 sp
原文地址:http://www.cnblogs.com/ctriphire/p/4157563.html