JS基礎查漏補缺 陣列 函式 包裝類

2021-10-07 22:58:07 字數 2950 閱讀 6321

reverse

()

concat

()

join

()

sort

()

function

(a,b)

call()

()

arguments
this
string()

boolean()

number

()

var num =

newnumber(2

);var str =

newstring

("hello");

var bool =

newboolean

(true

);

length
charat

()

charcodeat

()

string.

fromcharcode

()

indexof()

lastindexof

()

slice

()

substr

()

substring

()

tolowercase

()

touppercase

()

split

()

match

()

可以將字串中和正規表示式匹配的內容提取出來

replace

()

search

()

正則用來定義一些字串的規則,程式可以根據這些規則來判斷乙個字串是否符合規則,

也可以將乙個字串中符合規則的內容提取出來。

var reg =

newregexp

("正則"

,"匹配模式");

var reg =

/正規表示式/匹配模式

正則語法

| 或

或[^

] 除了

[a-z] 小寫字母

[a-z] 大寫字母

[a-z] 任意字母[0

-9] 任意數字

test

()

日期的物件,在js中通過date物件來表示乙個時間

var d =

newdate()

;

var d =

newdate

("月/日/年 時:分:秒"

);

getdate

()

getday

()

getmonth

()

getfullyear

() 從 date 物件以四位數字返回年份。

gethours

() 返回 date 物件的小時 (0~

23)。

getminutes

() 返回 date 物件的分鐘 (0~

59)。

getseconds

() 返回 date 物件的秒數 (0~

59)。

getmilliseconds

() 返回 date 物件的毫秒(0~

999)。

gettime

()

date.

now(

)

math屬於乙個工具類,它不需要我們建立物件,它裡邊封裝了屬性運算相關的常量和方法

我們可以直接使用它來進行數**算相關的操作

math.pi
math.

abs(

)

math.

ceil

()

math.

floor

()

math.

round

()

math.

random

()

math.

round

(math.

random()

*(y-x)

+x);

math.

pow(x,y)

math.

sqrt

()

math.

max(

)

math.

min(

)

求多個數中的最小值

JS查漏補缺1

1.function fn fn console.log typeof a undefined console.log typeof b number2.fn1 1 function fn1 fn2 報錯 var fn2 function 3.for infunction student stude...

Js查漏補缺 01

0x00 字串部分 使用 拼接字串與其他型別的資料,拼接出來的型別為字串 包括null與undefined 0x01 資料型別部分 typeof關鍵字可以獲取資料型別 例 typeof a parseint parsefloat 會去掉英文單詞,做動畫時可以用來去掉單位 使用時需注意首位不能為字母,...

Js查漏補缺 04

0x00 dom innertext 不識別html innerhtml 可以識別html,此外這兩個函式都能讀取元素內容 當無引數時 以上函式只能修改普通盒子的內容,像表單這種特殊標籤只能用value來修改 this在事件中指向的是事件函式的呼叫者 0x01 一些常用方法 listitems.pu...