服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - Spring boot + thymeleaf 后端直接给onclick函数赋值的实现代码

Spring boot + thymeleaf 后端直接给onclick函数赋值的实现代码

2020-11-22 22:53十年面壁 Java教程

这篇文章主要介绍了Spring boot + thymeleaf 后端直接给onclick函数赋值的实现代码,需要的朋友可以参考下

 这里是控制器里返回的 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * @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";
}

页面

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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函数赋值的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:http://blog.csdn.net/gongzhao426177/article/details/73550155

延伸 · 阅读

精彩推荐