发布于 2015-07-31 15:06:32 | 263 次阅读 | 评论: 0 | 来源: 网络整理
此方法返回表示指定对象的字符串形式。
string.toString( )
下面是参数的详细信息:
NA
返回表示指定对象的字符串。
<html>
<head>
<title>JavaScript String toString() Method</title>
</head>
<body>
<script type="text/javascript">
var str = "Apples are round, and Apples are Juicy.";
document.write(str.toString( ));
</script>
</body>
</html>
这将产生以下结果:
Apples are round, and Apples are Juicy.