8個對程式員來說有用的jQuery小貼士和技巧

来源:http://www.cnblogs.com/shouce/archive/2016/01/19/5141041.html
-Advertisement-
Play Games

1) 禁用滑鼠右鍵單擊 jQuery程式員可以使用此代碼在網頁上禁用滑鼠右鍵點擊。12345678910$(document).ready(function() {//catch the right-click context menu$(document).bind("contextmenu",....


1) 禁用滑鼠右鍵單擊

  jQuery程式員可以使用此代碼在網頁上禁用滑鼠右鍵點擊。

1 2 3 4 5 6 7 8 9 10 $(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調整文字大小

  使用此代碼,用戶可以重新網站上文字的大小(增大和減少)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 $(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) 在新的Windows打開鏈接

  Try this code and increase your site impressions because using this jquery code users will go on new window after clicking on any link of your site. Code is below: -

1 2 3 4 5 $(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) Style Sheets Swap

  Swap style sheets using this code and the “Style sheets swap” script  is below: -

1 2 3 4 5 6 $(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) 回到頂部鏈接

  That is very common function you can see on eve site nowadays is ” Back to Top”. This functionality is very useful for long pages for make short in a single click. Visit this code below: -

1 2 3 4 5 6 7 $(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軸

  You can find the values of X and Y coordinator of mouse pointer. Code is blow : -

1 2 3 4 $().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所支持的任何Web瀏覽器找到當前滑鼠的坐標。代碼如下:

1 2 3 4 5 $(document).ready(function() { $().mousemove(function(e) { $('# MouseCoordinates ').html("X Axis Position = " + e.pageX + " and Y Axis Position = " + e.pageY); });

});

  8) 在jQuery中預載入圖片

  此圖像預載入的腳本有助於非常快速載入圖像或網頁。你不必等待圖像載入。代碼:

1 2 3 4 5 6 7 8 9 10 11 12 13 jQuery.preloadImagesInWebPage = function() {      for(var ctr = 0; ctr<arguments.length; ctr++) { jQuery("<img alt="">").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…'); });
 
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 線程並不是java1.5以後的新技術,在(java1.5之前)傳統的線程創建有兩種方式:1)繼承Thread類;2)實現Runnable介面。1)繼承Thread類: 1 Thread thread1 = new Thread(){ 2 @Override 3 ...
  • 0. WebX項目目前已開源, 項目開源地址:https://github.com/webx/citrus-sample.git 項目參考文檔:http://www.openwebx.org/docs/1. 為什麼不使用SpringMVC,而是使用WebX? 當初阿裡巴巴建站的時候,並沒有現在...
  • 原文地址:Inversion of Control Containers and the Dependency Injection pattern中文翻譯版本是網上的PDF文檔,發佈在這裡僅為方便查看。原文作者:Martin Fowler,翻譯:透明。Java 社群近來掀起了一陣輕量級容器的熱潮,這...
  • 說起HTML5,可能讓你印象更深的是其基於Canvas的動畫特效,雖然Canvas在HTML5中的應用並不全都是動畫製作,但其動畫效果確實讓人震驚。本文收集了7個最讓人難忘的HTML5 Canvas動畫,包括畫板、文字、圖表等,希望你會喜歡。1、HTML5 Canvas畫板畫圖工具 可定義筆刷和畫布...
  • 我們常常需要在文本過長時顯示,將超出顯示成省略號:思想為:首先設置寬度,然後讓超出的部分隱藏如果有超出則在最後顯示省略號讓文本不換行具體css代碼為:.title{width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowra...
  • 移動應用製作的第三方服務市場已經被瓜分得差不多了,對於剛起步的中小企業來說,這些公司的 IT 部門人員比較熟悉的是Appcan,但隨著互聯網公司對 App 開發的需求持續升溫,也有不少後來的闖入者試圖用模式的改變在這個市場中突圍。“DeviceOne” 就是其中之一,為瞭解決原生 App 開發麵臨的...
  • css3動畫delay為負值時的效果 運行效果...
  • @media是css3中新定義的,功能非常強大,下麵簡單講解一下用css3的@media orientation匹配手機屏幕是橫屏還是豎屏。顧名思義PC是無法匹配橫豎屏的,所以orientation只對移動設備起效。1.頭部聲明加到2. media 匹配屏幕是橫屏還是豎屏@media all and...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...