A. 通过jS怎么将前台的参数传到后台
直接post提交数据就行了
<script>functiongetTrObjsValue(trObjsArr){if(trObjsArr==null||trObjsArr.length==0)return'';varstr='';for(vari=0;i<trObjsArr.length;i++){vartdChilds=trObjsArr[i].getElementsByTagName('TD');for(varj=0;j<tdChilds.length;j++){基枣型varname=tdChilds[j].getAttribute('name');//获取当前列对应的<col/>的列名alert('name='+name);varvalue=tdChilds[j].getAttribute('value');//获取选中行的当前列的数据alert('value='+value);if(name&&name!=''){str=str+'[列名:'+name+';列值:'+value搏猜+']';}}}$.ajax({type:'POST',data:{},url:'xxxxxx.do?str='+str,complete:function(xhr){varrst=xhr.responseText;if(rst=='1')alert('添加成功!');岩毕elsealert(rst);}});returnstr;}</script>