系統城裝機大師 - 唯一官網:www.farandoo.com!

當前位置:首頁 > 網絡編程 > JavaScript > 詳細頁面

24個解決實際問題的ES6代碼片段(小結)

時間:2020-02-03來源:系統城作者:電腦系統城

這是從30 seconds of code中挑出來的非常有用的一些代碼片段,這是一個非常棒的項目,大家可以去github上去搜索一下,給個star。

在本文中,我試圖根據它們的實際用途對它們進行分類,回答您在項目中可能遇到的常見問題:

1.如何隱藏指定的所有元素?


 
  1. const hide = (...el) => [...el].forEach(e => (e.style.display = 'none'));
  2.  
  3. // Example
  4. hide(document.querySelectorAll('img')); // Hides all <img> elements on the page
  5.  

2.如何檢查元素是否具有指定的類?


 
  1. const hasClass = (el, className) => el.classList.contains(className);
  2.  
  3. // Example
  4. hasClass(document.querySelector('p.special'), 'special'); // true
  5.  

3.如何為元素切換類?


 
  1. const toggleClass = (el, className) => el.classList.toggle(className);
  2.  
  3. // Example
  4. toggleClass(document.querySelector('p.special'), 'special');
  5. // The paragraph will not have the 'special' class anymore
  6.  

這里使用了classList.toggle()方法


 
  1. toggle( String [, force] )

當只有一個參數時:切換類值;也就是說,即如果類值存在,則刪除它并返回 false,如果不存在,則添加它并返回 true。
當存在第二個參數時:若第二個參數的執行結果為 true,則添加指定的類值,若執行結果為 false,則刪除它。

4.如何獲取當前頁面的滾動位置?


 
  1. const getScrollPosition = (el = window) => ({
  2. x: el.pageXOffset !== undefined ? el.pageXOffset : el.scrollLeft,
  3. y: el.pageYOffset !== undefined ? el.pageYOffset : el.scrollTop
  4. });
  5.  
  6. // Example
  7. getScrollPosition(); // {x: 0, y: 200}
  8.  

5.如何平滑滾動到頁面頂部?


 
  1. const scrollToTop = () => {
  2. const c = document.documentElement.scrollTop || document.body.scrollTop;
  3. if (c > 0) {
  4. window.requestAnimationFrame(scrollToTop);
  5. window.scrollTo(0, c - c / 8);
  6. }
  7. };
  8.  
  9. // Example
  10. scrollToTop();
  11.  

遞歸的方法不斷調用使用scrollToTop(),requestAnimationFrame方法告訴瀏覽器——你希望執行一個動畫,并且要求瀏覽器在下次重繪之前調用指定的回調函數更新動畫。它的回調函數執行次數通常與瀏覽器屏幕刷新次數相匹配,所以效果會比較平滑。

獲取當前頁面滾動條縱坐標的位置:document.body.scrollTop與document.documentElement.scrollTop

獲取當前頁面滾動條橫坐標的位置:document.body.scrollLeft與document.documentElement.scrollLeft

6.如何檢查父元素是否包含子元素?


 
  1. const elementContains = (parent, child) => parent !== child && parent.contains(child);
  2.  
  3. // Examples
  4. elementContains(document.querySelector('head'), document.querySelector('title'));
  5. // true
  6. elementContains(document.querySelector('body'), document.querySelector('body')); // false
  7.  

7.如何檢查指定的元素在視口中是否可見?


 
  1. const elementIsVisibleInViewport = (el, partiallyVisible = false) => {
  2. const { top, left, bottom, right } = el.getBoundingClientRect();
  3. const { innerHeight, innerWidth } = window;
  4. return partiallyVisible
  5. ? ((top > 0 && top < innerHeight) || (bottom > 0 && bottom < innerHeight)) &&
  6. ((left > 0 && left < innerWidth) || (right > 0 && right < innerWidth))
  7. : top >= 0 && left >= 0 && bottom <= innerHeight && right <= innerWidth;
  8. };
  9.  
  10. // Examples
  11. elementIsVisibleInViewport(el); // (not fully visible)
  12. elementIsVisibleInViewport(el, true); // (partially visible)
  13.  

傳入partiallyVisible參數,區分判斷是是部分可見還是全部可見。

Element.getBoundingClientRect()方法返回元素的大小及其相對于視口的位置。

8.如何獲取元素中的所有圖像?


 
  1. const getImages = (el, includeDuplicates = false) => {
  2. const images = [...el.getElementsByTagName('img')].map(img => img.getAttribute('src'));
  3. return includeDuplicates ? images : [...new Set(images)];
  4. };
  5.  
  6. // Examples
  7. getImages(document, true); // ['image1.jpg', 'image2.png', 'image1.png', '...']
  8. getImages(document, false); // ['image1.jpg', 'image2.png', '...']
  9.  

9.如何確定設備是移動設備還是臺式機/筆記本電腦?


 
  1. const detectDeviceType = () =>
  2. /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)
  3. ? 'Mobile'
  4. : 'Desktop';
  5.  
  6. // Example
  7. detectDeviceType(); // "Mobile" or "Desktop"
  8.  

10.如何獲取當前URL


 
  1. const currentURL = () => window.location.href;
  2.  
  3. // Example
  4. currentURL(); // 'https://google.com'
  5.  

11.如何創建包含當前URL參數的對象?


 
  1. const getURLParameters = url =>
  2. (url.match(/([^?=&]+)(=([^&]*))/g) || []).reduce(
  3. (a, v) => ((a[v.slice(0, v.indexOf('='))] = v.slice(v.indexOf('=') + 1)), a),
  4. {}
  5. );
  6.  
  7. // Examples
  8. getURLParameters('http://url.com/page?n=Adam&s=Smith'); // {n: 'Adam', s: 'Smith'}
  9. getURLParameters('google.com'); // {}
  10.  

12.如何將一組表單元素編碼為對象?


 
  1. const formToObject = form =>
  2. Array.from(new FormData(form)).reduce(
  3. (acc, [key, value]) => ({
  4. ...acc,
  5. [key]: value
  6. }),
  7. {}
  8. );
  9.  
  10. // Example
  11. formToObject(document.querySelector('#form')); // { email: 'test@email.com', name: 'Test Name' }
  12.  

Array.from方法用于將兩類對象轉為真正的數組。類似數組的對象(array-like object)和可遍歷(iterable)的對象(包括 ES6 新增的數據結構 Set 和 Map)。
reducer 函數接收4個參數:

  • Accumulator (acc) (累計器)
  • Current Value (cur) (當前值)
  • Current Index (idx) (當前索引)
  • Source Array (src) (源數組)

13.如何從對象中檢索出給定的一組屬性?


 
  1. const get = (from, ...selectors) =>
  2. [...selectors].map(s =>
  3. s
  4. .replace(/\[([^\[\]]*)\]/g, '.$1.')
  5. .split('.')
  6. .filter(t => t !== '')
  7. .reduce((prev, cur) => prev && prev[cur], from)
  8. );
  9. const obj = { selector: { to: { val: 'val to select' } }, target: [1, 2, { a: 'test' }] };
  10.  
  11. // Example
  12. get(obj, 'selector.to.val', 'target[0]', 'target[2].a'); // ['val to select', 1, 'test']
  13.  

14.延遲調用提供的函數(以毫秒為單位)


 
  1. const delay = (fn, wait, ...args) => setTimeout(fn, wait, ...args);
  2. delay(
  3. function(text) {
  4. console.log(text);
  5. },
  6. 1000,
  7. 'later'
  8. );
  9.  
  10. // Logs 'later' after one second.
  11.  

15.如何在給定元素上觸發特定事件,并可選地傳遞自定義數據?


 
  1. const triggerEvent = (el, eventType, detail) =>
  2. el.dispatchEvent(new CustomEvent(eventType, { detail }));
  3.  
  4. // Examples
  5. triggerEvent(document.getElementById('myId'), 'click');
  6. triggerEvent(document.getElementById('myId'), 'click', { username: 'bob' });
  7.  

構造方法 CustomerEvent() 創建一個新的 CustomEvent 對象。
CustomEvent 事件是由程序創建的,可以有任意自定義功能的事件。

16.如何從元素中移除事件偵聽器?


 
  1. const off = (el, evt, fn, opts = false) => el.removeEventListener(evt, fn, opts);
  2.  
  3. const fn = () => console.log('!');
  4. document.body.addEventListener('click', fn);
  5. off(document.body, 'click', fn); // no longer logs '!' upon clicking on the page
  6.  

17.將給定的毫秒數轉換為可讀格式


 
  1. const formatDuration = ms => {
  2. if (ms < 0) ms = -ms;
  3. const time = {
  4. day: Math.floor(ms / 86400000),
  5. hour: Math.floor(ms / 3600000) % 24,
  6. minute: Math.floor(ms / 60000) % 60,
  7. second: Math.floor(ms / 1000) % 60,
  8. millisecond: Math.floor(ms) % 1000
  9. };
  10. return Object.entries(time)
  11. .filter(val => val[1] !== 0)
  12. .map(([key, val]) => `${val} ${key}${val !== 1 ? 's' : ''}`)
  13. .join(', ');
  14. };
  15.  
  16. // Examples
  17. formatDuration(1001); // '1 second, 1 millisecond'
  18. formatDuration(34325055574); // '397 days, 6 hours, 44 minutes, 15 seconds, 574 milliseconds'
  19.  

18.如何得到兩個日期之間的差異(以天為單位)


 
  1. const getDaysDiffBetweenDates = (dateInitial, dateFinal) =>
  2. (dateFinal - dateInitial) / (1000 * 3600 * 24);
  3.  
  4. // Example
  5. getDaysDiffBetweenDates(new Date('2017-12-13'), new Date('2017-12-22')); // 9
  6.  

19.如何對傳遞的URL發出GET請求


 
  1. const httpGet = (url, callback, err = console.error) => {
  2. const request = new XMLHttpRequest();
  3. request.open('GET', url, true);
  4. request.onload = () => callback(request.responseText);
  5. request.onerror = () => err(request);
  6. request.send();
  7. };
  8.  
  9. httpGet(
  10. 'https://jsonplaceholder.typicode.com/posts/1',
  11. console.log
  12. );
  13.  
  14. // Logs: {"userId": 1, "id": 1, "title": "sample title", "body": "my text"}
  15.  

20.如何對傳遞的URL發出POST請求?


 
  1. const httpPost = (url, data, callback, err = console.error) => {
  2. const request = new XMLHttpRequest();
  3. request.open('POST', url, true);
  4. request.setRequestHeader('Content-type', 'application/json; charset=utf-8');
  5. request.onload = () => callback(request.responseText);
  6. request.onerror = () => err(request);
  7. request.send(data);
  8. };
  9.  
  10. const newPost = {
  11. userId: 1,
  12. id: 1337,
  13. title: 'Foo',
  14. body: 'bar bar bar'
  15. };
  16. const data = JSON.stringify(newPost);
  17. httpPost(
  18. 'https://jsonplaceholder.typicode.com/posts',
  19. data,
  20. console.log
  21. );
  22.  
  23. // Logs: {"userId": 1, "id": 1337, "title": "Foo", "body": "bar bar bar"}

21. 如何為指定的選擇器創建具有指定范圍、步驟和持續時間的計數器?


 
  1. const counter = (selector, start, end, step = 1, duration = 2000) => {
  2. let current = start,
  3. _step = (end - start) * step < 0 ? -step : step,
  4. timer = setInterval(() => {
  5. current += _step;
  6. document.querySelector(selector).innerHTML = current;
  7. if (current >= end) document.querySelector(selector).innerHTML = end;
  8. if (current >= end) clearInterval(timer);
  9. }, Math.abs(Math.floor(duration / (end - start))));
  10. return timer;
  11. };
  12.  
  13. // Example
  14. counter('#my-id', 1, 1000, 5, 2000); // Creates a 2-second timer for the element with id="my-id"
  15.  

22.如何將字符串復制到剪貼板


 
  1. const copyToClipboard = str => {
  2. const el = document.createElement('textarea');
  3. el.value = str;
  4. el.setAttribute('readonly', '');
  5. el.style.position = 'absolute';
  6. el.style.left = '-9999px';
  7. document.body.appendChild(el);
  8. const selected =
  9. document.getSelection().rangeCount > 0 ? document.getSelection().getRangeAt(0) : false;
  10. el.select();
  11. document.execCommand('copy');
  12. document.body.removeChild(el);
  13. if (selected) {
  14. document.getSelection().removeAllRanges();
  15. document.getSelection().addRange(selected);
  16. }
  17. };
  18.  
  19. // Example
  20. copyToClipboard('Lorem ipsum'); // 'Lorem ipsum' copied to clipboard.
  21.  

document.getSelection()返回一個  Selection 對象,表示用戶選擇的文本范圍或光標的當前位置。

23.判斷頁面的瀏覽器選項卡是否聚焦


 
  1. const isBrowserTabFocused = () => !document.hidden;
  2.  
  3. // Example
  4. isBrowserTabFocused(); // true
  5.  

24.如果不存在目錄,則如何創建


 
  1. const fs = require('fs');
  2. const createDirIfNotExists = dir => (!fs.existsSync(dir) ? fs.mkdirSync(dir) : undefined);
  3.  
  4. // Example
  5. createDirIfNotExists('test'); // creates the directory
  6.  

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持我們。

分享到:

相關信息

系統教程欄目

欄目熱門教程

人氣教程排行

站長推薦

熱門系統下載

jlzzjlzz亚洲乱熟在线播放