[Intern][2019.03.16]針對已有的HTML如何只憑JS改動?

来源:https://www.cnblogs.com/jackablack/archive/2019/03/20/10567368.html
-Advertisement-
Play Games

剛入職的時候看到公司用的HTML日誌生成工具附帶的Panel,工具不夠用,找個Fail還要找半天,於是自己琢磨著添磚加瓦。以前也是個半吊子前端工程師,現在可倒好,想要改頁面卻連頁面生成的模板在哪裡都不知道,只有通過改動JavaScript才能實現對頁面的修改。 固然,操作DOM有原版的 一族,可是它 ...


剛入職的時候看到公司用的HTML日誌生成工具附帶的Panel,工具不夠用,找個Fail還要找半天,於是自己琢磨著添磚加瓦。以前也是個半吊子前端工程師,現在可倒好,想要改頁面卻連頁面生成的模板在哪裡都不知道,只有通過改動JavaScript才能實現對頁面的修改。

固然,操作DOM有原版的 

document.getElementsBy

一族,可是它們get的時候不能通過 class 和 標簽 來區分,比如:

<div class="FAIL">
    <tr class="FAIL">
        <td class="FAIL ">I am row NO.1</td>
        <td class="TRACE">I am row NO.2</td>
        <td class="DEBUG">I am row NO.3</td>
        <td class="ERROR">I am row NO.4</td>
    </tr>
</div>    

通過Class查找會找出一堆FAIL;通過Tag查找……算了吧;通過ID查找……好吧根本沒有定義過ID。

活人總不能被尿憋死,CSS3中增強了對選擇器的支持,新特性中有:

document.querySelector

函數家族,他們是:

document.querySelector('tagName.className') 

An Element object representing the first element in the document that matches the specified set of CSS selectors, or null is returned if there are no matches.(By MDN)

返回匹配輸入的CSS選擇器的第一個元素,如果沒有匹配的元素,返回空(null)。

document.querySelectorAll('tagName.className') 

If you need a list of all elements matching the specified selectors, you should use querySelectorAll() instead.(By MDN)

如果你需要找到所有的匹配元素,請使用querySelectorAll

真的是很方便了。實際案例在下麵!

還值得一提的是,這個方法相比於Anchor,多了方便的動畫和滾動位置設定

document.querySelectorAll(eventName)[index].scrollIntoView({ behavior:"auto, "block: "start", inline: "nearest" });

三個屬性分別控制動畫、滾動到所選區域的哪裡,滾動到本頁面的哪裡。比起 “herf="#top"”來講方便了許多啊!

 

部分案例代碼:

  1 /*
  2 Function to add some new buttons to the panel
  3 
  4 Input: *None*
  5 
  6 Returns: *None*
  7 
  8 Effects: add "to top", "to bottom", "find fail" and "find error" buttons
  9 
 10 Modified on Mar 2019 by Jack Lyu
 11 
 12 Advise / Next stage: remove functions and put these buttons inside the HTML pages
 13 */
 14 
 15 function addButtons() {
 16     //adding anchor to page 
 17     var pageTop = document.createElement('a');
 18     pageTop.setAttribute("id", "top");
 19     var pageBottom = document.createElement('a');
 20     pageBottom.setAttribute("id", "bottom")
 21     var tableBody = document.getElementById("content");
 22     tableBody.insertBefore(pageTop, tableBody.firstChild);
 23     $(pageBottom).insertAfter(tableBody);
 24 
 25     //adding link to page 
 26     var infoText = document.createElement('p');
 27     infoText.setAttribute("style", "font-size: 1em;margin:0 0 5px 5px");
 28     infoText.innerHTML = "Navigator v1.0<br><div style='color:red;>'>Error(s):" + window.counterError + " Fail(s):" + window.counterFail + "</div>";
 29     var toTop = document.createElement('a');
 30     toTop.setAttribute("href", "#top");
 31     toTop.setAttribute("onclick", "resetCounter('All')");
 32     toTop.setAttribute("style", "color:#333333;margin:5px 0 0 5px;border:2px solid #6CDFEA;");
 33     toTop.innerHTML = "To Top";
 
// 省略一部分

42 panleBottom.insertBefore(toBottom, panleBottom.lastChild); 43 44 //adding "find next fail" button function 45 var failButton = document.createElement('div'); 46 failButton.setAttribute("style", "margin: 15px 0 0 5px;"); 47 var findNextFail = document.createElement('a'); 48 findNextFail.setAttribute("href", "javascript:void(233)"); 49 findNextFail.setAttribute("onclick", "findNext('tr.FAIL')"); 50 findNextFail.setAttribute("style", "color:#333333;border:3px solid #F02311;margin-left:5px;padding:5px 1.19em 5px 5px;width:30%;text-align:center"); 51 findNextFail.innerHTML = "Next FAIL"; 52 failButton.insertBefore(findNextFail, failButton.lastChild); 53 //adding "Prev fail" button function 54 var findFail = document.createElement('a'); 55 findFail.setAttribute("href", "javascript:void(233)"); 56 findFail.setAttribute("onclick", "findNext('tr.FAIL',false)"); 57 findFail.setAttribute("style", "color:#333333;border:3px solid #F02311;padding:5px 1.19em 5px 5px;width:30%;text-align:center"); 58 findFail.innerHTML = "Prev FAIL"; 59 failButton.insertBefore(findFail, failButton.lastChild);
// 省略一部分
80 //add both button to panle 81 panleBottom.insertBefore(errorButton, panleBottom.lastChild); 82 } 83 84 /* 85 Function to locate target event 86 87 Input: eventName 88 89 Returns: *None* 90 */ 91 92 function findEvent(eventName) { 93 var list = document.querySelectorAll(eventName); 94 var tag = eventName.split(".")[1]; 95 for (let index = list.length - 1; index >= 0; index--) { 96 list[index].setAttribute("id", tag + index); 97 list[index].firstChild.setAttribute("style", "background-color:#FFC943") 98 } 99 } 100 101 /* 102 Function to find next event 103 104 Input: eventName 105 106 Returns: *None* 107 108 Notice: Only work on some browsers: Chorme 29 and above(animation work on 61 above), IE8 and above, Firefox 1 and above(animation work on 36 above) 109 */ 110 111 function findNext(eventName, isNext) { 112 var index; 113 if (isNext == false) { 114 addCounter(eventName, 2); 115 findNext(eventName); 116 return; 117 } 118 else if (eventName == 'tr.ERROR') { 119 if (pointerError < 1) { resetCounter('tr.ERROR'); } 120 index = counterError - pointerError; 121 pointerError--; 122 } 123 else if (eventName == 'tr.FAIL') { 124 if (pointerFail < 1) { resetCounter('tr.FAIL'); } 125 index = counterFail - pointerFail; 126 pointerFail--; 127 } 128 129 else { alert('Script findNext error, call maintainer for help.'); } 130 document.querySelectorAll(eventName)[index].scrollIntoView({ block: "start", inline: "nearest" }); 131 } 132

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 每一個 HTML 文檔中,都有一個不可或缺的標簽: ,它作為一個容器,主要包含了用於描述 HTML 文檔自身信息(元數據)的標簽,這些標簽一般不會在頁面中被顯示出來,大多情況下是給瀏覽器和搜索引擎看的。 ...
  • 過濾器 vue允許自定義過濾器,我個人認為,過濾器有兩種,一種是對數據的清洗過濾,一種是對數據切換的動畫過濾 數據切換的動畫過濾 這裡還是利用前面的動態組件的例 ...
  • 今天弄一個autocomplete 向後後臺動態傳遞參數的問題 params: { "saleid": $("#divSalesman input[field='SalesmanId']").val() }, //這樣是不行的因為autocomplete() 方法不會每次都載入一遍,所以 $("#d ...
  • 一鍵獲取微信小程式源代碼 前言 最近開始學習微信小程式的開發,可是苦於(自學),很多東西看了也不太會。發現小程式的坑遠比想象的要多的多!!看到人家上線的小程式的效果,純靠推測,部分效果在絞盡腦汁後能做出大致的實現,但是有些細節,費勁全力都沒能做出來。很想一窺源碼,查看究竟,看看大廠的前端大神們是如何 ...
  • 數據類型:數字、Date、字元串。字元串的常用方法,Date對象的常用方法,轉義符。 ...
  • 預設的input項是比較難看的,並且它的寬度還無法隨著輸入而變化,這樣未免有些呆板,不過藉助JavaScript可以達到寬度自適應的效果,下麵為了方便使用了jQuery: 點擊此查看樣例 ...
  • 有些時候為了強調某些文字,需要使用一些比較特別的字體,CSS中現在也可以比較方便的引入字體了,如下: 其中font-family就是之後使用時候的字體名稱了,如此一來CSS中就可以直接使用本地的字體了,如下: 如果需要引用線上字體,首先需要找到線上字體,國內推薦谷歌字體,雖然裡面的中文字體不知道什麼 ...
  • 進行樣式修改,初步修改的內容 #home{width:90%;position:relative;}#blogTitle a{color:#fff; text-shadow:1px 1px 5px #ccc;}#blogTitle h2{color:#ffe;font-weight:700;text ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...