QQ 1640076782

2014年06月30日

外贸网站建设过程中常用Jquery小技巧

Filed under: 英语网站设计 — 标签: — lifengwu @ 10:19 上午

1、禁止右键 有些时候,客户需要禁用右键单击功能,以加大他人另存图片的难度。使用此代码,可以在网页上禁用鼠标右键点击。

代码如下:

$(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()

{

//when the id=”top” link is clicked

$(‘#top’).click(function()

{

//scoll the page back to the top

$(document).scrollTo(0,500);

}

});

3、获取鼠标的 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);

});

4、预加载图片 这个图片预加载片段让你能够快速的预先载入图片,不需要等待,加快网站打开速度,提高网站的客户体验。

代码如下:

jQuery.preloadImagesInWebPage = function()

{ for(var ctr = 0; ctr < arguments.length; ctr++)

{

jQuery("").attr("src", arguments[ctr]);

}

}

调用方法:

$.preloadImages("image1.gif", "image2.gif", "image3.gif");

判断图片是否已加载:

$('#imageObject').attr('src', 'image1.gif').load(function()

{

alert('The image has been loaded…');

});