js中数组的字符串表示

<html>
<head>
<title>数组的字符串表示</title>
<script type="text/javascript"> function B(){
var names=["zhangsan","lisi","wangwu"]; var namestr = names.join();
alert(namestr); } </script>
</head>
<body>
<input type="text" name="name" id="name">
<input type="button" value="dian" onclick="B();"> </body>
</html>

  

上一篇:js中数组和字符串的方法总结


下一篇:JS中数组和字符串具有的方法,以及substring,substr和slice的用法与区别