我尝试将这个可行的解决方案转移到jQuery。
<table>
<tr th:each="l : ${lst}">
<td>
<input type="button" th:onclick="foo ([[${l}]])"/>
</td>
</tr>
</table>
....
function foo (x)
{
}
我怎样才能用jQuery的方式来做呢?这样做好吗?
我尝试了这个方法,但我不知道如何将参数${l}导入函数,也不知道如何区分不同的按钮。
<table>
<tr th:each="l : ${lst}">
<td>
<input type="button" id="mybutton"/>
</td>
</tr>
</table>
...
$("#mybutton").click (function ()
{
});
1条答案
按热度按时间vltsax251#
将HTML修改为如下所示:
然后在jQuery中用途:
如果需要
${l}
以外的其他文本,请使用HTMLButtonElement: