<table >
            <tbody >
             	<#list li as li>
             		<tr id='${li.id}'>
             			<td width="80%">
             				<input id ='${li.id}' class="customold" style="width:85%"  value='${li.custom}'/>
             			</td>
             			<td align="center">
             				<input class="ordold" style="width:52px" type="number" value='${li.ord}'/>
             			</td>
             			<td align="center">
             				<a class="zxui-linkbutton"  onclick="detCus('${li.id}');">删除</a>
             			</td>
             		</tr>
             	</#list>
            </tbody>
        </table>

js获取table两个input空间的值以及其id。

	$(".customold").each(function(){
		var customold = $(this).val();
		var obj = $(this);
		var customoldid = $(obj).attr('id');
		customolds+=customold+',';
		customoldids+=customoldid+',';
	});

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-12-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-30
  • 2021-09-07
  • 2021-12-26
  • 2022-01-19
  • 2021-12-26
相关资源
相似解决方案