问题描述
最近在做关于ssh2的东西,页面用的struts标签,其中涉及到复选框传值的问题,然后想用jquery取到选中复选框行的多个text值,然后想把值赋给一个hidetext,进行后台获取,但就是获取不到值。下面是有关的代码,贴出来,大家帮忙找找,或者有其他方法。$(function(){$(":checkbox").click(function(){varreturnVal='';$('this').parent('tr').find(":text").each(function(){returnVal+=this.value+',';});$(this).val(returnVal.slice(0,-1));console.log($(this).val());alert(returnVal);$("#hideTextfield").attr("value",returnVal);});});<td><inputtype="checkbox"name="select"id="select"><inputtype="text"id="hideTextfield"name="hideTextfield"class="hide">
时间: 2024-10-14 20:16:46