當(dāng)前位置:軟件學(xué)堂 > 資訊首頁(yè) > 網(wǎng)絡(luò)編程 > 編程其他 > JavaScript數(shù)值處理函數(shù)

JavaScript數(shù)值處理函數(shù)

2012/11/27 21:20:24作者:佚名來(lái)源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

JavaScript數(shù)值處理函數(shù)

數(shù)值處理函數(shù)主要有:將其他類(lèi)型轉(zhuǎn)換為數(shù)值型(parseInt和parseFloat),判斷變量是否是數(shù)值型(isNaN)。
parseInt方法將一個(gè)字符串指定的進(jìn)制轉(zhuǎn)換成一個(gè)整數(shù),其語(yǔ)法格式如下所示。

【基本語(yǔ)法】

parseInt (numstring,[radix])

【語(yǔ)法介紹】

參數(shù)“numString”是要進(jìn)行轉(zhuǎn)換的字符串。參數(shù)“radix”可選,是介于2~36之間的一個(gè)數(shù)值,用于指定進(jìn)行字符串轉(zhuǎn)換時(shí)所用的進(jìn)制。如果沒(méi)有指定參數(shù)“radix”,則前綴為“oX”的字符串被視為十六進(jìn)制,前綴為“0”的字符串被視為八進(jìn)制,所有其他字符串都被視為十進(jìn)制。
要轉(zhuǎn)換的字符串中可以包含非數(shù)字字符。如果其中包含無(wú)法轉(zhuǎn)換成數(shù)字的字符,那么parseInt方法只取這個(gè)字符前面的部分進(jìn)行轉(zhuǎn)換。例如parseInt("12abc")的返回結(jié)果為12.如果parseInt方法完全無(wú)法將一個(gè)字符串轉(zhuǎn)換成數(shù)字,將返回NaN(not a number)。NaN需要使用isNaN方法才能檢測(cè)出來(lái)。
parseFloat方法將一個(gè)字符串轉(zhuǎn)換成對(duì)應(yīng)的小數(shù)。
下面的代碼演示了上面介紹的一些常見(jiàn)知識(shí),代碼如下。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無(wú)標(biāo)題文檔</title> <Script language="javascript"> document.write("默認(rèn)情況下的結(jié)果:"); document.write("32:"+parseInt('32')); document.write(";032:"+parseInt('032')); document.write(";0x32:"+parseInt('0x32')+"<br>"); document.write("轉(zhuǎn)為2進(jìn)制的結(jié)果:"); document.write("32:"+parseInt('32',2)); document.write(";032:"+parseInt('032',2)); document.write(";0x32:"+parseInt('0x32',2)+"<br>"); document.write("轉(zhuǎn)為8進(jìn)制的結(jié)果:"); document.write("32:"+parseInt('32',8)); document.write(";032:"+parseInt('032',8)); document.write(";0x32:"+parseInt('0x32',8)+"<br>"); document.write("轉(zhuǎn)為16進(jìn)制的結(jié)果:"); document.write("32:"+parseInt('32',16)); document.write(";032:"+parseInt('032',16)); document.write(";0x32:"+parseInt('0x32',16)+"<p>"); document.write("11001010轉(zhuǎn)換后的結(jié)果: "+"<br>"); document.write("2進(jìn)制:"+parseInt('11001010',2)); document.write(";16進(jìn)制:"+parseInt('11001010',16)+"<br>"); document.write("8進(jìn)制:"+parseInt('11001010',8)); document.write(";10進(jìn)制:"+parseInt('11001010',10)); document.write("<p>43abc轉(zhuǎn)換后:"+parseInt('43abc')); document.write(";abc43轉(zhuǎn)換后:"+parseInt('abc43')); document.write(";abc轉(zhuǎn)換后:"+parseInt('abc')); </script> </head> <body> </body> </html>

【代碼分析】

在代碼中,加粗部分的數(shù)值處理函數(shù),預(yù)覽效果如圖所示。

數(shù)值處理函數(shù)運(yùn)行效果

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:JavaScript數(shù)值處理函數(shù) 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: JavaScript  函數(shù)