当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript join()方法
The join() method is used to put all the elements of an array into a string.
join()方法可用给数组中的所有元素加入字符串中
The elements will be separated by a specified separator.
每个元素可用指定的分隔符区分开
arrayObject.join(separator) |
Parameter 参数 | Description 描述 |
---|---|
separator | Optional. Specifies the separator to be used 可选项。指定要使用的分隔符号 |
Note: Comma is the default separator for the join() method.
注意点:使用join()方法的默认分隔符号是逗号","
In this example we will create an array, and then put all the elements in a string:
这个举例中我们将建立一个数组,并将里面所有的元素放入字符串中:
<script type="text/javascript"> var arr = new Array(3) document.write(arr.join() + "<br />") document.write(arr.join(".")) </script> |
The output of the code above will be:
上面代码的输出结果为:
Jani,Hege,Stale |
join()
How to use join() create a string from an array.
怎样使用join()将来自数组的元素建立成字符串