javascript中常見的全局函數(shù)有:1.escape()函數(shù),對字符串進(jìn)行編碼;2.isNaN()函數(shù),檢查一個(gè)參數(shù)是否是非數(shù)字值;3.Number()函數(shù),把對象的值轉(zhuǎn)換為數(shù)字;4.String()函數(shù),把對象的值轉(zhuǎn)換為字符串;5.encodeURI()函數(shù),把字符串作為URI進(jìn)行編碼;6.decodeURI()函數(shù),解碼某個(gè)編碼的URL;7.decodeURIComponent()函數(shù),解碼一個(gè)編碼的URI組件;8.encodeURIComponent()函數(shù),把字符串編碼為URI組件;9.eval()函數(shù),計(jì)算字符串,并執(zhí)行其代碼;10.isFinite()函數(shù),檢查參數(shù)是否是無窮大;11.parseFloat()函數(shù),解析字符串,返回浮點(diǎn)數(shù);12.parseInt()函數(shù),解析字符串,返回整數(shù);13.unescape()函數(shù),對escape()編碼的字符串進(jìn)行解碼;
javascript中常見的全局函數(shù)有以下幾種
1.escape()函數(shù)
javascript中escape()函數(shù)的作用是用于對字符串進(jìn)行編碼。
escape()函數(shù)使用方法:
document.write(escape("Hello world!"));
2.isNaN()函數(shù)
javascript中isNaN()函數(shù)的作用是用于檢查一個(gè)參數(shù)是否是非數(shù)字值。
isNaN()函數(shù)使用方法:
document.write(isNaN(123)); //返回false
document.write(isNaN("Hello")); //返回true
3.Number()函數(shù)
javascript中Number()函數(shù)的作用是用于把對象的值轉(zhuǎn)換為數(shù)字。
Number()函數(shù)使用方法:
var test1= new Boolean(true);
var test2= new Boolean(false);
document.write(Number(test1)); //返回 1
document.write(Number(test2)); //返回 0
4.String()函數(shù)
javascript中String()函數(shù)的作用是用于把對象的值轉(zhuǎn)換為字符串。
String()函數(shù)使用方法:
var test1 = new Boolean(1);
var test2 = new Boolean(0);
document.write(String(test1)); //返回true
document.write(String(test2)); //返回false
5.encodeURI()函數(shù)
javascript中encodeURI()函數(shù)的作用是用于把字符串作為URI進(jìn)行編碼。
encodeURI()函數(shù)使用方法:
var uri="my test.php?name=st?le&car=saab";
document.write(encodeURI(uri));
6.decodeURI()函數(shù)
javascript中decodeURI()函數(shù)的作用是對encodeURI()函數(shù)編碼過的URI進(jìn)行解碼。
decodeURI()函數(shù)使用方法:
var test1="http://www.baidu.com"document.write(encodeURI(test1)+ "<br />")
document.write(decodeURI(test1))
7.decodeURIComponent()函數(shù)
javascript中decodeURIComponent()函數(shù)的作用是對encodeURIComponent()函數(shù)編碼的URI進(jìn)行解碼。
decodeURIComponent()函數(shù)使用方法:
var uri="http://www.baidu.com";var uri_encode=encodeURIComponent(uri);
document.write(uri_encode);
document.write("<br>");
8.encodeURIComponent()函數(shù)
javascript中encodeURIComponent()函數(shù)的作用是把字符串作為URI組件進(jìn)行編碼。
encodeURIComponent()函數(shù)使用方法:
var uri="http://www.baidu.com";document.write(encodeURIComponent(uri));
9.eval()函數(shù)
javascript中eval()函數(shù)的作用是計(jì)算某個(gè)字符串,并執(zhí)行其中的javascript代碼。
eval()函數(shù)使用方法:
eval("x=10;y=20;document.write(x*y)"); //返回200document.write(eval("2+2")); //返回4
var x=10
document.write(eval(x+17)); //返回27
10.isFinite()函數(shù)
javascript中isFinite()函數(shù)的作用是用于檢查其參數(shù)是否是無窮大。
isFinite()函數(shù)使用方法:
document.write(isFinite(0)+ "<br>"); //返回truedocument.write(isFinite("Hello")+ "<br>"); //返回false
11.parseFloat()函數(shù)
javascript中parseFloat()函數(shù)的作用是解析一個(gè)字符串,并返回一個(gè)浮點(diǎn)數(shù)。
parseFloat()函數(shù)使用方法:
document.write(parseFloat("10.00")); //返回10document.write(parseFloat("10.33")) ; //返回10.33
document.write(parseFloat("34 45 66")); //返回 34
12.parseInt()函數(shù)
javascript中parseInt()函數(shù)的作用是解析一個(gè)字符串,并返回一個(gè)整數(shù)。
parseInt()函數(shù)使用方法:
document.write(parseInt("10") + "<br>"); //返回10document.write(parseInt("10.33") + "<br>"); //返回10
document.write(parseInt("34 45 66") + "<br>"); //返回34
13.unescape()函數(shù)
javascript中unescape()函數(shù)的作用是對escape()函數(shù)編碼的字符串進(jìn)行解碼。
unescape()函數(shù)使用方法:
var str="Need tips? Visit RUNOOB!";var str_esc=escape(str);
document.write(str_esc + "<br>");
document.write(unescape(str_esc));