溫馨提示×

javascript常用的系統(tǒng)函數(shù)有哪些

養(yǎng)魚的貓咪
1394
2021-04-12 09:38:46
欄目: 編程語言

javascript的系統(tǒng)函數(shù)有:1.parseInt,解析字符串,返回整數(shù);2.parseFloat,解析字符串,返回浮點數(shù);3.prompt,提示用戶進行輸入的對話框;4.isNaN,檢查一個參數(shù)是否為非數(shù)字值;5.eval,計算字符串,將其作為腳本代碼執(zhí)行;6.escape,對字符串進行編碼;

javascript常用的系統(tǒng)函數(shù)有哪些

javascript中常用的系統(tǒng)函數(shù)有以下幾種

1.parseInt函數(shù)

javascript中parseInt函數(shù)的作用是用于解析一個字符串,并返回一個整數(shù)。

parseInt函數(shù)語法:

parseInt(變量名)

parseInt函數(shù)使用方法:

parseInt("10"); //返回 10

parseInt("19",10); //返回 19 (10+9)

parseInt("11",2); //返回 3 (2+1)

2.parseFloat函數(shù)

javascript中parseFloat函數(shù)的作用是用于解析一個字符串,并返回一個浮點數(shù)。

parseFloat函數(shù)語法:

parseFloat(變量名)

parseFloat函數(shù)使用方法:

document.write(parseFloat("10"); //返回10

document.write(parseFloat("10.33"); //返回10.33

document.write(parseFloat("34 45 66"); //返回34

3.prompt函數(shù)

javascript中prompt函數(shù)的作用是用于顯示一個提示用戶進行輸入的對話框。

prompt函數(shù)語法:

prompt()

prompt函數(shù)使用方法:

var person = prompt("請輸入姓名");

if (person != null) {

document.getElementById("demo").innerHTML = "你好 " + person ;

}

4.isNaN函數(shù)

javascript中isNaN函數(shù)的作用是用于檢查一個參數(shù)是否為非數(shù)字值。

isNaN函數(shù)語法:

isNaN(檢測值)

isNaN函數(shù)使用方法:

document.write(isNaN(5-2)); //返回false

document.write(isNaN(0)); //返回false

document.write(isNaN("Hello")); //返回true

5.eval函數(shù)

javascript中eval函數(shù)的作用是用于計算一個字符串,并將其作為腳本代碼執(zhí)行。

eval函數(shù)語法:

eval(string)

eval函數(shù)使用方法:

eval("x=10;y=20;document.write(x*y)")//返回200

document.write(eval("2+2"))//返回4

var x=10

document.write(eval(x+17))//返回27

6.escape函數(shù)

javascript中escape函數(shù)的作用是用于對字符串進行編碼。

escape函數(shù)語法:

escape(string)

escape函數(shù)使用方法:

document.write(escape("Hello world!"))

document.write(escape("?!=()#%&"))

0