8個(gè)超實(shí)用的jQuery功能代碼分享
本文我們將為jQuery用戶分享8個(gè)超實(shí)用的技巧攻略。jQuery是JavaScript最好的庫(kù)之一,主要用于制作動(dòng)畫(huà)、事件處理,支持Ajax及HTML 腳本客戶端。此外,jQuery還擁有各種插件,以幫助開(kāi)發(fā)者在最短時(shí)間內(nèi)快速創(chuàng)建網(wǎng)站/網(wǎng)頁(yè)。
文中分享的這些實(shí)用代碼,希望你會(huì)喜歡。
1)禁用右鍵單擊功能
如果你想為用戶節(jié)省網(wǎng)站信息,那么開(kāi)發(fā)者可以使用這段代碼——禁用右鍵單擊功能。
$(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)使用jQuery設(shè)定文本大小
使用這段代碼,用戶可根據(jù)需求重新設(shè)定文本尺寸(增加或減少)。
$(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)在新窗口打開(kāi)鏈接
使用這段代碼會(huì)幫助用戶在新窗口打開(kāi)鏈接,為用戶帶來(lái)更好的用戶體驗(yàn)。
$(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)返回到頂部鏈接
此代碼對(duì)于長(zhǎng)時(shí)間點(diǎn)擊單頁(yè)面非常實(shí)用,你可以在重要關(guān)頭點(diǎn)擊“返回頂部”功能。
$(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)獲取鼠標(biāo)指針的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)檢測(cè)當(dāng)前鼠標(biāo)坐標(biāo)
使用這個(gè)腳本,你可以在任何網(wǎng)絡(luò)瀏覽器獲取鼠標(biāo)坐標(biāo)。
$(document).ready(function() {
$().mousemove(function(e)
{
$('# MouseCoordinates ').html("X Axis Position = " + e.pageX + " and Y Axis Position = " + e.pageY);
});
8)圖片預(yù)加載
此段代碼幫助用戶快速加載圖片或網(wǎng)頁(yè)頁(yè)面。
jQuery.preloadImagesInWebPage = function()
{
for(var ctr = 0; ctr<arguments.length; ctr++)
{
jQuery("").attr("src", arguments[ctr]);
}
}
To use the above method, you can use the following piece of code:
$.preloadImages("image1.gif", "image2.gif", "image3.gif");
To check whether an image has been loaded, you can use the following piece of code:
$('#imageObject').attr('src', 'image1.gif').load(function() {
alert('The image has been loaded…');
});
- 50個(gè)比較實(shí)用jQuery代碼段
- JQuery select標(biāo)簽操作代碼段
- 分享javascript、jquery實(shí)用代碼段
- 利用Jquery實(shí)現(xiàn)幾款漂亮實(shí)用的時(shí)間軸(附示例代碼)
- jQuery+ajax實(shí)現(xiàn)實(shí)用的點(diǎn)贊插件代碼
- 分享12個(gè)實(shí)用的jQuery代碼片段
- 基于jQuery實(shí)現(xiàn)美觀且實(shí)用的倒計(jì)時(shí)實(shí)例代碼
- 60個(gè)很實(shí)用的jQuery代碼開(kāi)發(fā)技巧收集
- 一些實(shí)用的jQuery代碼片段收集
- jquery實(shí)用代碼片段集合
- 非常實(shí)用的jQuery代碼段集錦【檢測(cè)瀏覽器、滾動(dòng)、復(fù)制、淡入淡出等】
相關(guān)文章
jQuery選中select控件 無(wú)法設(shè)置selected的解決方法
select 控件的 option用jQuery動(dòng)態(tài)添加,然后選中某項(xiàng)時(shí),IE6不能執(zhí)行(火狐沒(méi)問(wèn)題),用try{}catch(err){alert(err.description);}提示為“無(wú)法設(shè)置selected屬性 未指明的錯(cuò)誤”2010-09-09Jquery Ajax xmlhttp請(qǐng)求成功問(wèn)題
這篇文章主要介紹了Jquery Ajax xmlhttp請(qǐng)求成功問(wèn)題,需要的朋友可以參考下2015-02-02jQuery避免$符和其他JS庫(kù)沖突的方法對(duì)比
jQuery中需要用到$符號(hào),如果其他js庫(kù)也定義了$符號(hào),那么就會(huì)造成沖突,會(huì)影響到j(luò)s代碼的正常執(zhí)行,下面有幾個(gè)不錯(cuò)的解決方法,大家可以參考下2014-02-02Jquery與Bootstrap實(shí)現(xiàn)后臺(tái)管理頁(yè)面增刪改查功能示例
本篇文章主要介紹了Jquery與Bootstrap實(shí)現(xiàn)后臺(tái)管理頁(yè)面增刪改查功能示例,具有一定的參考價(jià)值,有興趣的可以了解一下。2017-01-01使用jQuery調(diào)用XML實(shí)現(xiàn)無(wú)刷新即時(shí)聊天
這篇文章主要介紹了使用jQuery調(diào)用XML實(shí)現(xiàn)無(wú)刷新即時(shí)聊天的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-08-08artDialog雙擊會(huì)關(guān)閉對(duì)話框的修改過(guò)程分享
artDialog,一個(gè)jquery的對(duì)話框插件但是在使用時(shí)發(fā)現(xiàn)鼠標(biāo)雙擊時(shí)會(huì)自半對(duì)話框,下面與大家分享下具體的修改過(guò)程,感興趣的朋友可以參考下2013-08-08jqeury eval將字符串轉(zhuǎn)換json的方法
這個(gè)方法是一個(gè)將DataTable轉(zhuǎn)換成字符串的方法 。2011-01-01jQuery AJAX應(yīng)用實(shí)例總結(jié)
這篇文章主要介紹了jQuery AJAX應(yīng)用,結(jié)合實(shí)例形式總結(jié)分析了jQuery 使用AJAX訪問(wèn)各種格式數(shù)據(jù)相關(guān)應(yīng)用操作實(shí)現(xiàn)技巧,需要的朋友可以參考下2020-05-05jQuery 1.3 和 Validation 驗(yàn)證插件1.5.1
jQuery 1.3已經(jīng)新鮮出爐了,你可以通過(guò)jQuery 的官方博客查看相關(guān)細(xì)節(jié)。jQuery三歲了!2009-07-07