thymeleaf:button点击事件传递参数<button th:data-id="${id}" type="button" class="testBtn"></button>
<script>
$(".testBtn").click(function() {
var id = $(this).attr("data-id");//获得参数的值
$.ajax({
type:'get',
url:"/test",
data:{id:id},
success:function (result) {
if(result ==="ok"){
window.location.href="/main";
}
}
});
});
</script>thyme
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论