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

JavaScript
JS 介绍
JS 怎样使用
JS 在哪使用
JS 变量
JS If...Else
JS Switch
JS 操作符
JS Popup Boxes
JS 函数
JS For 循环
JS While 循环
JS Break 循环
JS For...In
JS 事件
JS Try...Catch
JS Throw
JS onerror
JS 特殊字符
JS Guidelines
JS 对象介绍

JavaScript String() 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 402 ::
收藏到网摘: 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

登陆 | 还没注册?