2025年01月31日 建站教程
js如何实现数组与字符串的相换,下面web建站小编给大家简单介绍一下互换方法!
1、利用split()方法把字符串转换成数组
var str = "1,2,3,4,5,6,7,8,9"; console.log('输出结果:', str.split(",")) //输出结果: (9) ['1', '2', '3', '4', '5', '6', '7', '8', '9']
2、利用toString()方法把数组转换成字符串
var arr = ['1', '2', '3', '4', '5', '6', '7', '8', '9']; console.log('输出结果:', arr.toString()) //输出结果: 1,2,3,4,5,6,7,8,9
本文链接:http://so.lmcjl.com/news/22408/