8個超實(shí)用的jQuery功能代碼分享
本文我們將為jQuery用戶分享8個超實(shí)用的技巧攻略。jQuery是JavaScript最好的庫之一,主要用于制作動畫、事件處理,支持Ajax及HTML 腳本客戶端。此外,jQuery還擁有各種插件,以幫助開發(fā)者在最短時間內(nèi)快速創(chuàng)建網(wǎng)站/網(wǎng)頁。
文中分享的這些實(shí)用代碼,希望你會喜歡。
1)禁用右鍵單擊功能
如果你想為用戶節(jié)省網(wǎng)站信息,那么開發(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)在新窗口打開鏈接
使用這段代碼會幫助用戶在新窗口打開鏈接,為用戶帶來更好的用戶體驗(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)返回到頂部鏈接
此代碼對于長時間點(diǎn)擊單頁面非常實(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)檢測當(dāng)前鼠標(biāo)坐標(biāo)
使用這個腳本,你可以在任何網(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)頁頁面。
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個比較實(shí)用jQuery代碼段
- JQuery select標(biāo)簽操作代碼段
- 分享javascript、jquery實(shí)用代碼段
- 利用Jquery實(shí)現(xiàn)幾款漂亮實(shí)用的時間軸(附示例代碼)
- jQuery+ajax實(shí)現(xiàn)實(shí)用的點(diǎn)贊插件代碼
- 分享12個實(shí)用的jQuery代碼片段
- 基于jQuery實(shí)現(xiàn)美觀且實(shí)用的倒計時實(shí)例代碼
- 60個很實(shí)用的jQuery代碼開發(fā)技巧收集
- 一些實(shí)用的jQuery代碼片段收集
- jquery實(shí)用代碼片段集合
- 非常實(shí)用的jQuery代碼段集錦【檢測瀏覽器、滾動、復(fù)制、淡入淡出等】
相關(guān)文章
jQuery選中select控件 無法設(shè)置selected的解決方法
select 控件的 option用jQuery動態(tài)添加,然后選中某項時,IE6不能執(zhí)行(火狐沒問題),用try{}catch(err){alert(err.description);}提示為“無法設(shè)置selected屬性 未指明的錯誤”2010-09-09Jquery與Bootstrap實(shí)現(xiàn)后臺管理頁面增刪改查功能示例
本篇文章主要介紹了Jquery與Bootstrap實(shí)現(xiàn)后臺管理頁面增刪改查功能示例,具有一定的參考價值,有興趣的可以了解一下。2017-01-01使用jQuery調(diào)用XML實(shí)現(xiàn)無刷新即時聊天
這篇文章主要介紹了使用jQuery調(diào)用XML實(shí)現(xiàn)無刷新即時聊天的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-08-08artDialog雙擊會關(guān)閉對話框的修改過程分享
artDialog,一個jquery的對話框插件但是在使用時發(fā)現(xiàn)鼠標(biāo)雙擊時會自半對話框,下面與大家分享下具體的修改過程,感興趣的朋友可以參考下2013-08-08jqeury eval將字符串轉(zhuǎn)換json的方法
這個方法是一個將DataTable轉(zhuǎn)換成字符串的方法 。2011-01-01jQuery AJAX應(yīng)用實(shí)例總結(jié)
這篇文章主要介紹了jQuery AJAX應(yīng)用,結(jié)合實(shí)例形式總結(jié)分析了jQuery 使用AJAX訪問各種格式數(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)新鮮出爐了,你可以通過jQuery 的官方博客查看相關(guān)細(xì)節(jié)。jQuery三歲了!2009-07-07