JS常用方法完結 7

2021-10-08 17:19:47 字數 2008 閱讀 5396

<

!doctype html>

"en"

>

"utf-8"

>

document<

/title>

<

/head>

console.

log(

"擴充套件運算子在等號的左邊");

var[a,

...rest]=[

1,2,

3,4]

; console.

log(a)

; console.

log(rest)

; console.

log(

"擴充套件運算子在等號的右邊");

var arr1 =[1

,2,3

];var arr2 =

[...arr1]

; console.

log(arr2)

; console.

log(

"如何對陣列中的內容進行反轉");

let b=[6

,66,666];

console.

log(b.

reverse()

);console.

log(

"如何擷取陣列中指定範圍內容");

let arr666=[1

,2,3

,4,5

,6];

let qq=arr666.

slice(0

,2);

//這個方法是獲取擷取的內容的

// // slice方法是包頭不包尾(包含起始位置, 不包含結束的位置)

console.

log(qq)

; console.

log(

"如何查詢元素在陣列中的位置");

let arr =[1

,2,3

,4,5

,3];

// indexof方法如果找到了指定的元素, 就會返回元素對應的位置

// indexof方法如果沒有找到指定的元素, 就會返回-1

// 注意點: indexof方法預設是從左至右的查詢, 一旦找到就會立即停止查詢

let m=arr.

indexof(3

);//找元素3

let n=arr.

indexof(6

);//找元素6

console.

log(m)

; console.

log(n)

;//當indexof兩個引數的時候

// 引數1: 需要查詢的元素

// 引數2: 從什麼位置開始查詢

let x=arr.

indexof(3

,4);

console.

log(x)

; console.

log(

"lastindexof");

// 注意點: lastindexof方法預設是從右至左的查詢, 一旦找到就會立即停止查詢

let f=arr.

lastindexof(3

);let ff = arr.

lastindexof(3

,4);

console.

log(f)

; console.

log(ff)

; console.

log(

"如何判斷陣列中是否包含某個元素");

js工具 js常用方法,js常用判斷方法

function obj id 根據id得到物件 function val id 根據id得到物件的值 function trim str 刪除左邊和右邊空格 function ltrim str 刪除左邊空格 function rtrim str 刪除右邊空格 function isempty s...

js 常用方法

驗證數字,保留一位小數 function one ele a za z u4e00 u9fa5 驗證固定 和手機 function checkphone e 2 9 0 9 0 9 if e.value.match re 1 3 4 5 8 0 9 d test e.value else 驗證身份證...

js 常用方法

c c.substring 1,c.length 有的話,從第二位開始取 if c.indexof nameeq 0 return false 清除cookie function clearcookie name 設定cookie function setcookie name,value,seco...