今天做练习的时候碰到一个问题,就是在一个动态生成的表格中点击a标签修改同行不同列的值,在经过网上查询和自己尝试后解决了这个问题,特此记录。
首先这是需求,点击某行的加号或者减号修改该行的入库数的数量:
新手记得引入jQuery文件:
<!-- jquery -->
<script src="https://cdn.bootcss.com/jquery/2.2.3/jquery.min.js"></script>
加号和减号是动态生成的,这里只贴一段,图标是网上找的:
<td><a href='javascript:;' onclick='minus(this)' title='减少'>
<img src='<%=basePath %>img/minus.png' height='35' width='35f'></a></td>
<td><input type='text' name='amount' style='width:50px;' value=0 /></td>
<td><a href='javascript:;' onclick='plus(this)' titl