作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有下表
<table id="table">
<thead>
<tr>
<th></th>
...
</tr>
</thead>
<tbody>
<c:choose>
<c:when test="${not empty userList}">
<c:forEach var="user" items="${userList}">
<tr>
<td><input name="id" value="${user.id}" hidden></td>
...
</tr>
</c:forEach>
</c:when>
</c:choose>
</tbody>
</table>
<input type="button" name="objects"/>
这是我的 JavaScript,用于选择表格中的行
$(window).load(function () {
$("#table tr").click(function () {
$(this).addClass('selected').siblings().removeClass('selected');
var elem = $(this).find('td:first input').attr('value');
});
$('.objects').on('click', function (e) {
alert($("#table tr.selected td:first input").attr('value'));
});
});
当我选择行然后按按钮对象
时,我会收到所选 ID 的警报。我想在 Spring MVC Controller 中传递这个 id,不需要 Ajax。
所以我想在表中选择用户,然后按按钮objects
并将所选用户的ID传递到新页面/userObjects
。请你帮我解决这个问题。
最佳答案
删除您的警报
并执行以下操作:
var id = $("#table tr.selected td:first input").attr('value');
window.location = '/userObjects?id=' + id;
您可能需要根据您想要将用户转发到的网址来调整 window.location
。
关于javascript - 如何在不使用 Ajax 的情况下将隐藏值从 jQuery 传递到 Spring MVC Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32861268/
我是一名优秀的程序员,十分优秀!