需要准备的材料分别是:电脑、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们中取出指组成的字符串。
JS中有三种字符串连接方式:
第一种方法 , 用连接符“+”把要连接的字符串连起来:
str="a"
str+="b"
第二种方法, 以数组作为中介用 join 连接字符串:
var arr=new Array()
arr.push(a)
arr.push(b)var str=arr.join("")
第三种方法, 利用对象属性来连接字符串:
function stringConnect(){ this._str_=new Array()
}
stringConnect.prototype.append=function(a){ this._str_.push(a)
}
stringConnect.prototype.toString=function(){ return this._str_.join()
} var mystr=new stringConnect
mystr.append("a") var str=mystr.toString()
JS中三种字符串连接方式的性能比较:
第一种,方法毫无疑问是最便捷快速的,如果只连接100个以下的字符串建议用这种方法最方便;
第二种,这种方法要比第一种消耗更少的资源,速度也更快;
第三种,方法加入了随机参数,应该是避免了缓存的影响的。
$("#formTable").append('<table class="textalignCenter tabcustom0" cellpadding="0" id="card_info_tablecard" cellspacing="0" width="100%" border="1"><tr><th width="60%">卡号</th><th width="40%">类型</th></tr><c:forEach var="cardaa" items="${data.list}"><tr><td>${cardaa.cardId}</td><td>${cardaa.productName}</td></tr></c:forEach></table>')