js中数组中元素之间的逗号如何去掉

JavaScript019

js中数组中元素之间的逗号如何去掉,第1张

需要准备的材料分别是:电脑、html编辑器、浏览器。

1、首先,打开html编辑器,新建html文件,例如:index.html。

2、在index.html的<script>标签中,输入js代码:var a = [1, 2, 3, 4, 5]var b = a.join('')document.body.innerText = b。

3、浏览器运行index.html页面,此时数组元素之间的逗号被去掉了打印出来了。

<script>

document.getElementById('aaa').onclick=function(){

 var s=""

 for(var i=0i<this.options.lengthi++){

    if(this.options[i].selected){

       if(s)s+=","

       s+=this.options[i].value

    }

 }

 document.getElementById("bbb").value = s

}

</script>