它將對象的值轉換為字符串值。
用法:
String(object)
參數值:
- object:用javascript創建的對象。
返回值:它返回一個字符串值。
示例1:返回布爾值的字符串值。
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green;">
Geeks for Geeks
</h1>
<button onclick="geek()">
Press
</button>
<h4>Clicking on the 'Press' button
will return the String Value.</h4>
<p id="gfg"></p>
<script>
function geek() {
var x = Boolean(1);
var y = Boolean(0);
var string =
String(x) + "<br>" +
String(y);
document.getElementById(
"gfg").innerHTML = string;
}
</script>
</center>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:返回Date()對象的字符串值。
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green;">
Geeks for Geeks
</h1>
<button onclick="geek()">
Press
</button>
<h4>Clicking on the 'Press'
button will return the
String Value.
</h4>
<p id="gfg"></p>
<script>
function geek() {
var y = Date();
var string =
String(y);
document.getElementById(
"gfg").innerHTML = string;
}
</script>
</center>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
瀏覽器支持:列出的瀏覽器支持String()函數
- 穀歌瀏覽器
- 火狐瀏覽器
- IE瀏覽器
- Opera
- 蘋果瀏覽器
相關用法
- Javascript string.slice()用法及代碼示例
- Javascript String toLowerCase()用法及代碼示例
- Javascript string.valueOf()用法及代碼示例
- Javascript string.repeat()用法及代碼示例
- Javascript string.localeCompare()用法及代碼示例
- Javascript String concat()用法及代碼示例
- Javascript string.toString()用法及代碼示例
- Javascript String substr()用法及代碼示例
注:本文由純淨天空篩選整理自riarawal99大神的英文原創作品 JavaScript | String() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。