当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript String() 方法

JavaScript
JS 字符串
JS Date
JS数组,JS Array
JS Boolean
JS Math
JS HTML DOM
JS Browser
JS Cookies
JS 校验
JS Animation
JS Image Maps
JS Timing
JS 建立对象
JS 摘要
JS 实例
JS 对象实例
JS DOM 实例
JS数组对象参考
JS布尔对象参考
JS日期对象参考

JavaScript String() 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 404 ::
收藏到网摘: n/a

Definition and Usage
定义与用法

The String() function converts the value of an object to a string.
String()方法将一个对象的值强制转换为字符形式

Syntax
语法

String(object)

Parameter
参数
Description
注释
object
对象
Required. A JavaScript object
必选项。一个JavaScript对象


Tips and Notes
注意

Note: The String() function returns the same value as toString() of the individual objects.
注意:对于某些特定对象,String()方法和toString()方法返回相同的值。


Example
实例

In this example we will try to convert different objects to strings:
在下面的例子中,我们将把不同的值转换为字符形式:

<script type="text/javascript">
var test1= new Boolean(1)
var test2= new Boolean(0)
var test3= new Boolean(true)
var test4= new Boolean(false)
var test5= new Date()
var test6= new String("999 888")
var test7=12345

document.write(String(test1)+ "<br />")
document.write(String(test2)+ "<br />")
document.write(String(test3)+ "<br />")
document.write(String(test4)+ "<br />")
document.write(String(test5)+ "<br />")
document.write(String(test6)+ "<br />")
document.write(String(test7)+ "<br />")
</script>

The output of the code above will be:
输出结果为:



Try-It-Yourself Demos
互动演练

String()
How to use String() to convert different objects to strings.
如何应用String()方法来转换不同的值

评论 (0) All

登陆 | 还没注册?