当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript String() 方法
The String() function converts the value of an object to a string.
String()方法将一个对象的值强制转换为字符形式
String(object) |
Parameter 参数 | Description 注释 |
---|---|
object 对象 | Required. A JavaScript object 必选项。一个JavaScript对象 |
Note: The String() function returns the same value as toString() of the individual objects.
注意:对于某些特定对象,String()方法和toString()方法返回相同的值。
In this example we will try to convert different objects to strings:
在下面的例子中,我们将把不同的值转换为字符形式:
<script type="text/javascript"> var test1= new Boolean(1) </script> |
The output of the code above will be:
输出结果为:
String()
How to use String() to convert different objects to strings.
如何应用String()方法来转换不同的值