时间:2021-05-20
这里是控制器里返回的
/** * @param pageUtil 分页工具类 * @param cliCorpQuery 查询类 * @param model model * @return String */ @RequestMapping(value = {"/list"}, method = RequestMethod.GET) public String list(PageUtil<CliCorp> pageUtil, CliCorpQuery cliCorpQuery, Model model) { PageUtil<CliCorp> corps; try { corps = corpClientService.queryByPage(pageUtil, cliCorpQuery); } catch (Exception e) { logger.error("queryByPage error:" + e.getMessage()); return "queryByPage error"; } model.addAttribute("corps", corps); return VIEW_PATH + "list"; }页面
<tr th:each="corp:${corps.contents}"> <td><span th:text="${corp.name}"></span></td> <td><span th:text="${corp.creditCode}"></span></td> <td><span th:text="${corp.taxNo}"></span></td> <td><span th:text="${corp.showName}"></span></td> <td><span th:text="${corp.bank}"></span></td> <td><span th:text="${corp.bankAccount}"></span></td> <td><span th:text="${corp.agent}"></span></td> <td><span th:text="${corp.address}"></span></td> <td><span th:text="${corp.status}"></span></td> <td><span th:text="${corp.creator}"></span></td> <td> <button type="button" th:onclick="'javascript:check('+${corp.id}+',2)'">审核 </button> <button type="button" th:onclick="'javascript:check('+${corp.id}+',3)'">拒绝 </button> </td> </tr>JS
function check(id, status) { $.ajax({ type: "POST", data: {id: id, status: status}, url: "/admin/corp/check", success: function (data) { if (data == "认证成功") { window.location.href = ("/admin/corp/list"); } else { alert("认证失败"); } }, error: function (data) { alert("认证失败"); } }); }以上所述是小编给大家介绍的Spring boot + thymeleaf 后端直接给onclick函数赋值的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.pom.xml添加相应依赖 org.springframework.boot spring-boot-starter-thymeleaf2.applic
1)当方法没有参数时,赋值可以直接用onclick=方法名复制代码代码如下:window.onload=function(){$('btnTest').oncl
本文实例讲述了python实现给数组按片赋值的方法。分享给大家供大家参考。具体如下:这段代码可以直接给数组的第5-7个元素赋值inventory=["sword
1)当方法没有参数时,赋值可以直接用onclick=方法名window.onload=function(){$('btnTest').onclick=test;
Java大小写最快转换方式实例代码这里直接给出实现代码,在代码中注释都很清楚,不多做介绍。Java代码packageio.mycat;importjava.ut