需要准备的材料分别是:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html,填入一定数量的input。
2、在index.html的<script>标签中,输入js代码:
var c = ''
$('input[name="txt"]').each(function () {
if (c !== '') {c += ','}
c += $(this).val()
})
document.body.innerText = c
3、浏览器运行index.html页面,此时会打印出从input们中取出指组成的字符串。
let item = 1,2,3,4
var arr = []
arr = item.split(',')
console.log("打印----", arr)//[1,2,3,4]