jQuery是最好的JavaScript库之一,用于简化动画,事件处理,支持Ajax和HTML 的客户端脚本。网络中有大量的 jQuery 插件,有助于在短时间内通过简单容易的方法创建网站。今天,我们来分享一些很有用的技巧和窍门给jQuery的技术开发人员。所以我们选取了几个对jQuery 开发人员非常有用的代码片段。希望你的下一个项目中能用得上这些代码。
1) 禁止右键
在开发 Web 应用的时候,有些情况需要禁用右键单击功能。使用此代码,jQuery 开发人员可以在网页上禁用鼠标右键点击。代码如下:
$(document).ready(function() {
//catch theright-click context menu
$(document).bind("contextmenu",function(e){
//warningprompt - optional
alert("Noright-clicking!");
});
2) 文本缩放 使用下面的代码,用户可以更具需要增大或者缩放网页中的字体大小,代码如下: $(document).ready(function() { //find the currentfont size varoriginalFontSize = $('html').css('font-size');
//Increase the textsize $(".increaseFont").click(function(){ varcurrentFontSize = $('html').css('font-size'); varcurrentFontSizeNumber = parseFloat(currentFontSize, 10); varnewFontSize = currentFontSizeNumber*1.2; $('html').css('font-size',newFontSize); returnfalse; }); //Decrease the TextSize $(".decreaseFont").click(function(){ varcurrentFontSize = $('html').css('font-size'); varcurrentFontSizeNum = parseFloat(currentFontSize, 10); varnewFontSize = currentFontSizeNum*0.8; $('html').css('font-size',newFontSize); returnfalse; }); // Reset Font Size $(".resetFont").click(function(){ $('html').css('font-size',originalFontSize);}); });
3) 在新窗口打开链接 使用这个 jQuery 代码,用户会点击你的网站的任何链接都会在新的窗口中打开。如下: $(document).ready(function() { //select all anchortags that have http in the href //and apply thetarget=_blank $("a[href^='http']").attr('target','_blank'); });
4) 样式表切换
你知道网站换肤是怎么做的吗?下面的代码可以帮助你实现样式表切换功能,如下:
$(document).ready(function() {
$("a.cssSwap").click(function(){
//swapthe link rel attribute with the value in the rel
$('link[rel=stylesheet]').attr('href', $(this).attr('rel'));
});
});
5) 回到顶部 这是现在网站中很常用的回到顶部功能,特别适合页面很长的情况。代码很简单,如下: $(document).ready(function() { //when theid="top" link is clicked $('#top').click(function(){ //scollthe page back to the top $(document).scrollTo(0,500); } });
本文为Anyforweb技术分享博客,需要了解网站建设相关,请访问anyforweb.com。