需要准备的材料分别是:电脑、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们中取出指组成的字符串。
var str="for(var 0i<10i++){
str+="这里是第"+i+"个字符串啊"
}
console.log(str)