banner
leoking

leoking

前端开发者
tg_channel

實用的 JavaScript 代碼

本文整理了一些實用的 JavaScript 單行代碼,非常好用~~


透過document.cookie 來查找cookie

const cookie = name => `; ${document.cookie}`.split(`; ${name}=`).pop().split(';').shift();

cookie('_ga');
// Result: "GA1.2.1929736587.1601974046"

顏色 RGB 轉十六進制#

const rgbToHex = (rgb=> "#" + ((1 << 24+ (r << 16+ (g << 8+ b).toString(16).slice(1);

rgbToHex(051255);
// Result: #0033ff

複製到剪貼板#

借助navigator.clipboard.writeText可以很容易的將文本複製到剪貼板

規範要求在寫入剪貼板之前使用 Permissions API 獲取 “剪貼板寫入” 權限。但是,不同瀏覽器的具體要求不同,因為這是一個新的 API。有關詳細信息,請查看 compatibility table and Clipboard availability in Clipboard。

function copyToClipboard(textToCopy) {
            // navigator clipboard 需要https等安全上下文
            if (navigator.clipboard && window.isSecureContext) {
                // navigator clipboard 向剪貼板寫文本
                return navigator.clipboard.writeText(textToCopy);
            } else {
                // 創建text area
                let textArea = document.createElement("textarea");
                textArea.value = textToCopy;
                // 使text area不在viewport,同時設置不可見
                textArea.style.position = "absolute";
                textArea.style.opacity = 0;
                textArea.style.left = "-999999px";
                textArea.style.top = "-999999px";
                document.body.appendChild(textArea);
                textArea.focus();
                textArea.select();
                return new Promise((res, rej) => {
                    // 執行複製命令並移除文本框
                    document.execCommand('copy') ? res() : rej();
                    textArea.remove();
                });
            }
        }

檢查日期是否合法#

使用以下代碼段檢查給定日期是否有效。

const isDateValid = (...val=> !Number.isNaN(new Date(...val).valueOf());

isDateValid("December 17, 1995 03:24:00");
// Result: true

查找日期位於一年中的第幾天#

const dayOfYear = (date=>
      Math.floor((date - new Date(date.getFullYear(), 00)) / 1000 / 60 / 60 / 24);

dayOfYear(new Date());
// Result: 272

英文字符串首字母大寫#

Javascript 沒有內置的首字母大寫函數,因此我們可以使用以下代碼。

const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1)

capitalize("follow for more")
// Result: Follow for more

計算 2 個日期之間相差多少天#

const dayDif = (date1date2=> Math.ceil(Math.abs(date1.getTime() - date2.getTime()) / 86400000)

dayDif(new Date("2020-10-21"), new Date("2021-10-22"))
// Result: 366

透過使用document.cookie訪問 cookie 並將其清除,可以輕鬆清除網頁中存儲的所有 cookie。

const clearCookies = document.cookie.split(';').forEach(cookie => document.cookie = cookie.replace(/^ +/'').replace(/=.*/`=;expires=${new Date(0).toUTCString()};path=/`));

生成隨機十六進制顏色#

可以使用 Math.random 和 padEnd 屬性生成隨機的十六進制顏色。

const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6"0")}`;

 console.log(randomHex());
// Result: #92b008

數組去重#

可以使用 JavaScript 中的Set輕鬆刪除重複項

const removeDuplicates = (arr=> [...new Set(arr)];

console.log(removeDuplicates([123344556]));
// Result: [ 1, 2, 3, 4, 5, 6 ]

從 URL 獲取查詢參數#

可以透過傳遞 window.location 或原始 URL goole.com?search=easy&page=3 輕鬆地從 url 檢索查詢參數

const getParameters = (URL=> {
  URL = JSON.parse(
    '{"' +
      decodeURI(URL.split("?")[1])
        .replace(/"/g'\\"')
        .replace(/&/g'","')
        .replace(/=/g'":"'+
      '"}'
  );
  return JSON.stringify(URL);
};

getParameters(window.location);
// Result: { search : "easy", page : 3 }

或者更為簡單的:

Object.fromEntries(new URLSearchParams(window.location.search))
// Result: { search : "easy", page : 3 }

時間處理#

我們可以從給定日期以 hour::minutes::seconds 格式記錄時間。

const timeFromDate = date => date.toTimeString().slice(08);

console.log(timeFromDate(new Date(202101017300)));
// Result: "17:30:00"

校驗數字是奇數還是偶數#

const isEven = num => num % 2 === 0;

console.log(isEven(2));
// Result: True

求數字的平均值#

使用reduce方法找到多個數字之間的平均值。

const average = (...args=> args.reduce((ab=> a + b) / args.length;

average(1234);
// Result: 2.5

回到頂部#

可以使用 window.scrollTo(0, 0) 方法自動滾動到頂部。將 x 和 y 都設置為 0。

const goToTop = () => window.scrollTo(00);

goToTop();

翻轉字符串#

可以使用 splitreverse 和 join 方法輕鬆反轉字符串。

const reverse = str => str.split('').reverse().join('');

reverse('hello world');
// Result: 'dlrow olleh'

校驗數組是否為空#

一行代碼檢查數組是否為空,將返回truefalse

const isNotEmpty = arr => Array.isArray(arr) && arr.length > 0;

isNotEmpty([123]);
// Result: true

獲取用戶選擇的文本#

使用內置的getSelection 屬性獲取用戶選擇的文本。

const getSelectedText = () => window.getSelection().toString();

getSelectedText();

打亂數組#

可以使用sort 和 random 方法打亂數組

const shuffleArray = (arr=> arr.sort(() => 0.5 - Math.random());

console.log(shuffleArray([1234]));
// Result: [ 1, 4, 3, 2 ]

檢查用戶的設備是否處於暗模式#

使用以下代碼檢查用戶的設備是否處於暗模式。

const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches

console.log(isDarkMode)
// Result: True or False

瀏覽器操作系統的詳細信息#

console.log(navigator.platform);

使用 void (0) 阻止頁面刷新#

下面的鏈接可以在不重新加載頁面的情況下發出警報。

<a href="JavaScript:void(0);" onclick="alert('Well done!')">
  Click Me!
</a>

驗證任何電子郵件#

function validateEmail(email) {
  var re =
    /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
  return re.test(String(email).toLowerCase());
}

// 如果您想要一個更簡單的也能接受 Unicode 字符的版本。你可以使用下面這個!
function validateEmailUnicode(email) {
  var re =
    /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
  return re.test(String(email).toLowerCase());
}

獲取當前 URL#

console.log("location.href", window.location.href); // Returns full URL

使用 regex 檢測移動瀏覽器#

使用 regex,根據用戶是否使用手機瀏覽,返回 true 或 false 值

window.mobilecheck = function () {
  var mobileCheck = false;
  (function (a) {
    if (
      /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(
        a
      ) ||
      /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(
        a.substr(0, 4)
      )
    )
      mobileCheck = true;
  })(navigator.userAgent || navigator.vendor || window.opera);
  return mobileCheck;
};

無需 regex 表達式即可檢測移動瀏覽器#

只需運行設備列表並檢查 userAgent 是否匹配,即可檢測移動瀏覽器。這是使用 regex 表達式的另一種解決方案

function detectmob() {
  if (
    navigator.userAgent.match(/Android/i) ||
    navigator.userAgent.match(/webOS/i) ||
    navigator.userAgent.match(/iPhone/i) ||
    navigator.userAgent.match(/iPad/i) ||
    navigator.userAgent.match(/iPod/i) ||
    navigator.userAgent.match(/BlackBerry/i) ||
    navigator.userAgent.match(/Windows Phone/i)
  ) {
    return true;
  } else {
    return false;
  }
}

聲明和初始化數組#

// 我們可以使用特定的大小來初始化數組,也可以通過指定值來初始化數組內容,大家可能用的是一組數組,其實二維數組也可以這樣做,如下所示:

const array = Array(5).fill(''); 
// 輸出
(5) ["", "", "", "", ""]

const matrix = Array(5).fill(0).map(() => Array(5).fill(0))
// 輸出
(5) [Array(5), Array(5), Array(5), Array(5), Array(5)]
0: (5) [0, 0, 0, 0, 0]
1: (5) [0, 0, 0, 0, 0]
2: (5) [0, 0, 0, 0, 0]
3: (5) [0, 0, 0, 0, 0]
4: (5) [0, 0, 0, 0, 0]
length: 5

求和,最小值和最大值#

// 我們應該利用 reduce 方法快速找到基本的數學運算。

const array  = [5,4,7,8,9,2];

// 求和
array.reduce((a,b) => a+b);
// 輸出: 35

// 最大值
array.reduce((a,b) => a>b?a:b);
// 輸出: 9

// 最小值
array.reduce((a,b) => a<b?a:b);
// 輸出: 2

排序字符串,數字或對象等數組#

// 我們有內置的方法sort()和reverse()來排序字符串,但是如果是數字或對象數組呢

// 字符串數組排序

const stringArr = ["Joe", "Kapil", "Steve", "Musk"]
stringArr.sort();
// 輸出
(4) ["Joe", "Kapil", "Musk", "Steve"]

stringArr.reverse();
// 輸出
(4) ["Steve", "Musk", "Kapil", "Joe"]
// 數字數組排序

const array  = [40, 100, 1, 5, 25, 10];
array.sort((a,b) => a-b);
// 輸出
(6) [1, 5, 10, 25, 40, 100]

array.sort((a,b) => b-a);
// 輸出
(6) [100, 40, 25, 10, 5, 1]
// 對象數組排序

const objectArr = [ 
    { first_name: 'Lazslo', last_name: 'Jamf'     },
    { first_name: 'Pig',    last_name: 'Bodine'   },
    { first_name: 'Pirate', last_name: 'Prentice' }
];
objectArr.sort((a, b) => a.last_name.localeCompare(b.last_name));
// 輸出 
(3) [{…}, {…}, {…}]
0: {first_name: "Pig", last_name: "Bodine"}
1: {first_name: "Lazslo", last_name: "Jamf"}
2: {first_name: "Pirate", last_name: "Prentice"}
// length: 3

從數組中过濾到虛值#

// 像 0, undefined, null, false, "", ''這樣的假值可以通過下面的技巧輕易地過濾掉。

const array = [3, 0, 6, 7, '', false];
array.filter(Boolean);

// 輸出
// (3) [3, 6, 7]

使用邏輯運算符處理需要條件判斷的情況#

function doSomething(arg1){ 
    arg1 = arg1 || 10; 
// 如果arg1沒有值,則取默認值 10
}

let foo = 10;  
foo === 10 && doSomething(); 
// 如果 foo 等於 10,剛執行 doSomething();
// 輸出: 10

foo === 5 || doSomething();
// is the same thing as if (foo != 5) then doSomething();
// Output: 10

去除重複值#

const array  = [5,4,7,8,9,2,7,5];
array.filter((item,idx,arr) => arr.indexOf(item) === idx);
// or
const nonUnique = [...new Set(array)];
// Output: [5, 4, 7, 8, 9, 2]

創建一個計數器對象或 Map#

// 大多數情況下,可以通過創建一個對象或者Map來計數某些特殊詞出現的頻率。

let string = 'kapilalipak';

const table={}; 
for(let char of string) {
  table[char]=table[char]+1 || 1;
}
// 輸出
// {k: 2, a: 3, p: 2, i: 2, l: 2}
// 或者

const countMap = new Map();
  for (let i = 0; i < string.length; i++) {
    if (countMap.has(string[i])) {
      countMap.set(string[i], countMap.get(string[i]) + 1);
    } else {
      countMap.set(string[i], 1);
    }
  }
// 輸出
// Map(5) {"k" => 2, "a" => 3, "p" => 2, "i" => 2, "l" => 2}

三元運算符很酷#

function Fever(temp) {
    return temp > 97 ? 'Visit Doctor!'
      : temp < 97 ? 'Go Out and Play!!'
      : temp === 97 ? 'Take Some Rest!': 'Go Out and Play!';;
}

// 輸出
// Fever(97): "Take Some Rest!" 
// Fever(100): "Visit Doctor!"

循環方法的比較#

for 和 for..in 默認獲取索引,但你可以使用arr[index]。
for..in也接受非數字,所以要避免使用。
forEach, for...of 直接得到元素。
forEach 也可以得到索引,但 for...of 不行。

合併兩個對象#

const user = { 
 name: 'Kapil Raghuwanshi', 
 gender: 'Male' 
 };
const college = { 
 primary: 'Mani Primary School', 
 secondary: 'Lass Secondary School' 
 };
const skills = { 
 programming: 'Extreme', 
 swimming: 'Average', 
 sleeping: 'Pro' 
 };

const summary = {...user, ...college, ...skills};

// 合併多個對象
gender: "Male"
name: "Kapil Raghuwanshi"
primary: "Mani Primary School"
programming: "Extreme"
secondary: "Lass Secondary School"
sleeping: "Pro"
swimming: "Average"

箭頭函數#

箭頭函數表達式是傳統函數表達式的一種替代方式,但受到限制,不能在所有情況下使用。因為它們有詞法作用域(父作用域),並且沒有自己的this和argument,因此它們引用定義它們的環境。

const person = {
name: 'Kapil',
sayName() {
    return this.name;
    }
}
person.sayName();
// 輸出
"Kapil"

// 但是這樣:

const person = {
name: 'Kapil',
sayName : () => {
    return this.name;
    }
}
person.sayName();
// Output
"

可選的鏈#

const user = {
  employee: {
    name: "Kapil"
  }
};
user.employee?.name;
// Output: "Kapil"
user.employ?.name;
// Output: undefined
user.employ.name
// 輸出: VM21616:1 Uncaught TypeError: Cannot read property 'name' of undefined

雙問號語法#

const foo = null ?? 'my school';
// 輸出: "my school"

const baz = 0 ?? 42;
// 輸出: 0

剩餘和展開語法#

function myFun(a,  b, ...manyMoreArgs) {
   return arguments.length;
}
myFun("one", "two", "three", "four", "five", "six");

// 輸出: 6
// 和

const parts = ['shoulders', 'knees']; 
const lyrics = ['head', ...parts, 'and', 'toes']; 

lyrics;
// 輸出: 
(5) ["head", "shoulders", "knees", "and", "toes"]

洗牌一個數組#

利用內置的Math.random()方法。

const list = [1, 2, 3, 4, 5, 6, 7, 8, 9];
list.sort(() => {
    return Math.random() - 0.5;
});
// 輸出
(9) [2, 5, 1, 6, 9, 8, 4, 3, 7]
// 輸出
(9) [4, 1, 7, 5, 3, 8, 2, 9, 6]

默認參數#

const search = (arr, low=0, high=arr.length-1) => {
    return high;
}
console.log(search([1,2,3,4,5]))
// 輸出: 4

將十進制轉換為二進制或十六進制#

const num = 10;

num.toString(2);
// 輸出: "1010"
num.toString(16);
// 輸出: "a"
num.toString(8);
// 輸出: "12"

使用解構來交換兩個數#

let a = 5;
let b = 8;
[a,b] = [b,a]

[a,b]
// 輸出
(2) [8, 5]

單行的回文數檢查#

function checkPalindrome(str) {
  return str == str.split('').reverse().join('');
}
checkPalindrome('naman');
// 輸出: true

將 Object 屬性轉換為屬性數組#

const obj = { a: 1, b: 2, c: 3 };

Object.entries(obj);
console.log(Object.entries(obj))
// Output
(3) [Array(2), Array(2), Array(2)]
0: (2) ["a", 1]
1: (2) ["b", 2]
2: (2) ["c", 3]
length: 3

Object.keys(obj);
(3) ["a", "b", "c"]

Object.values(obj);
(3) [1, 2, 3]

當禁用 JavaScript 時, <noscript> 內的代碼塊會被執行,通常用於在使用 JavaScript 生成頁面時顯示替代內容#

<script type="javascript">
    // JS related code goes here
</script>
<noscript>
    <a href="next_page.html?noJS=true">JavaScript is disabled on the page. Enable it asap!</a>
</noscript>

將光標設置為等待#

function myFunction() {
  window.document.body.style.cursor = "wait";
}

為控制台信息添加 CSS#

console.log(
  "%c The text has a purple color, with large font and white background",
  "color: purple; font-size: x-large; background: white"
);

禁用網頁右鍵#

<body oncontextmenu="return false;"></body>

捕捉瀏覽器的返回按鈕#

您可以使用 beforeunload 事件來做到這一點,該事件會在窗口、文檔及其資源即將卸載時觸發。該事件有助於警告用戶將丟失當前數據以及檢測返回按鈕事件

 window.addEventListener('beforeunload', () => {
   console.log('Clicked browser back button');
 });
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。