1) 禁止右键
在开发 web 应用的时候,有些情况需要禁用右键单击功能。使用此代码,jquery 开发人员可以在网页上禁用鼠标右键点击。代码如下:
复制代码 代码如下:
$(document).ready(function() {
//catch the right-click context menu
$(document).bind(contextmenu,function(e) {
//warning prompt - optional
alert(no right-clicking!);
//delete the default context menu
return false;
});
});
2) 文本缩放
使用下面的代码,用户可以更具需要增大或者缩放网页中的字体大小,代码如下:
复制代码 代码如下:
$(document).ready(function() {
//find the current font size
var originalfontsize = $('html').css('font-size');
//increase the text size
$(.increasefont).click(function() {
var currentfontsize = $('html').css('font-size');
var currentfontsizenumber = parsefloat(currentfontsize, 10);
var newfontsize = currentfontsizenumber*1.2;
$('html').css('font-size', newfontsize);
return false;
});
//decrease the text size
$(.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;
});
// reset font size
$(.resetfont).click(function(){
$('html').css('font-size', originalfontsize);
});
});
3) 在新窗口打开链接
使用这个 jquery 代码,用户会点击你的网站的任何链接都会在新的窗口中打开。如下:
复制代码 代码如下:
$(document).ready(function() {
//select all anchor tags that have http in the href
//and apply the target=_blank
$(a[href^='http']).attr('target','_blank');
});
4) 样式表切换
你知道网站换肤是怎么做的吗?下面的代码可以帮助你实现样式表切换功能,如下:
复制代码 代码如下:
$(document).ready(function() {
$(a.cssswap).click(function() {
//swap the link rel attribute with the value in the rel
$('link[rel=stylesheet]').attr('href' , $(this).attr('rel'));
});
});
5) 回到顶部
这是现在网站中很常用的回到顶部功能,特别适合页面很长的情况。代码很简单,如下:
复制代码 代码如下:
$(document).ready(function() {
//when the id=top link is clicked
$('#top').click(function() {
//scoll the page back to the top
$(document).scrollto(0,500);
}
});
6) 获取鼠标的 x、y 坐标
下面的代码可以获取鼠标的 x,y 坐标,代码如下:
复制代码 代码如下:
$().mousemove(function(e){
//display the x and y axis values inside the p element
$('p').html(x axis : + e.pagex + | y axis + e.pagey);
});
7) 检测当前鼠标的坐标
使用下面的代码,能够在任何支持 jquery 的地方获取当前鼠标的坐标,如下:
复制代码 代码如下:
$(document).ready(function() {
$().mousemove(function(e){
$('# mousecoordinates ').html(x axis position = + e.pagex + and y axis position = + e.pagey);
});
8) 预加载图片
这个图片预加载片段让你能够快速的预先载入图片,不需要等待。代码如下:
复制代码 代码如下:
jquery.preloadimagesinwebpage = function() {
for(var ctr = 0; ctrjquery().attr(src, arguments[ctr]);
}
}
调用方法:
复制代码 代码如下:
$.preloadimages(image1.gif, image2.gif, image3.gif);
判断图片是否已加载:
$('#imageobject').attr('src', 'image1.gif').load(function() {
alert('the image has been loaded…');
});