數字轉字串的函數有:1、toString(),當函數把數值轉換成字串時,無法保留小數位;2、toFixed(),能夠把數值轉換為字串,並顯示小數點後的指定位數;3、toExponential();4、toPrecision()。
本教學操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
1、toString()
toString() 是Object 類型的原型方法,Number 子類別繼承該方法後,重寫了toString(),允許傳遞一個整數參數,設定顯示模式。數字預設為十進位顯示模式,透過設定參數可以改變數字模式。
1) 如果省略參數,則 toString() 方法會採用預設模式,直接把數字轉換為數字字串。
var a = 1.000; var b = 0.0001; var c = 1e-1; console.log(a.toString()); //返回字符串“1” console.log(b.toString()); //返回字符串“0.0001” console.log(c.toString()); //返回字符串“0.0001”
toString() 方法能夠直接輸出整數和浮點數,保留小數位。小數位末尾的零會被清除。但是對於科學計數法,則會在條件許可的情況下把它轉換為浮點數,否則就用科學計數法形式輸出字串。
var a = 1e-14; console.log(a.toString()); //返回字符串“1e-14”
在預設情況下,無論數值採用什麼模式表示,toString() 方法傳回的都是十進位的數字字串。因此,對於八進位、二進位或十六進位的數字,toString() 方法都會先把它們轉換為十進制數值之後再輸出。
var a = 010; //八进制数值 10 var b = 0x10; //十六进制数值10 console.log(a.toString()); //返回字符串“8” console.log(b.toString()); //返回字符串“16”
2) 如果設定參數,則 toString() 方法會根據參數把數值轉換為對應進位的值之後,再輸出為字串表示。
var a = 10; //十进制数值 10 console.log(a.toString(2)); //返回二进制数字字符串“1010” console.log(a.toString(8)); //返回八进制数字字符串“12” console.log(a.toString(16)); //返回二进制数字字符串“a”
2、 toFixed()
toFixed() 能夠把數值轉換為字串,並顯示小數點後的指定位數。
var a = 10; console.log(a.toFixed(2)); //返回字符串“10.00” console.log(a.toFixed(4)); //返回字符串“10.0000”
3、toExponential()
toExponential() 方法專門用來把數字轉換為科學計數法形式的字串。
var a = 123456789; console.log(a.toExponential(2)); //返回字符串“1.23e+8” console.log(a.toExponential(4)); //返回字符串“1.2346e+8”
toExponential() 方法的參數指定了保留的小數位數。省略部分以四捨五入的方式處理。
4、toPrecision()
toPrecision() 方法與toExponential() 方法相似,但它可以指定有效數字的位數,而不是指定小數位數。
var a = 123456789; console.log(a.toPrecision(2)); //返回字符串“1.2e+8” console.log(a.toPrecision(4)); //返回字符串“1.235e+8”
【推薦學習:javascript進階教學】
以上是javascript數字轉字串的函數有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!