我正在迭代JSTL中的列表以显示其记录。每个onclick="editList()"
都有<form:label
个事件。如果点击其中任何一个,我想在 editList()函数参数中发送${item.id}
和${item.number}
。我该如何发送这些参数。
<c:forEach var='item' items='${rule.list}' varStatus="itemsRow">
<tr>
<form:label path="list[${itemsRow.index}].id" onclick="editList()">
${item.id}
</form:label>
</tr>
<tr>
<form:label path="list[${itemsRow.index}].number" onclick="editList()">
${item.number}
</form:label>
</tr>
</c:forEach>
答案 0 :(得分:2)
onclick="editList('${item.id}', '${item.number}')"