JSP页面有个隐藏域<input type="hidden" name="showIds" id="showIds" value=""/> JS中有一个函数如下:
functionsetShowIds(){vartext="0";$("input[name=names]").each(function(){if($(this).at...
function setShowIds() {
var text="0";
$("input[name=names]").each(function() {
if ($(this).attr("checked")) {
text += ","+$(this).val();
}
});
$("#showIds").val(text);
}
请问该JS函数的作用,谢谢了 展开
var text="0";
$("input[name=names]").each(function() {
if ($(this).attr("checked")) {
text += ","+$(this).val();
}
});
$("#showIds").val(text);
}
请问该JS函数的作用,谢谢了 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询