Thymeleaf th:onclick 进行js传值

  • 错误的写法:
    th:onclick="'javascript:editUser('+${prod.id}+');'"
  • 正确的写法:
    th:onclick="'javascript:editUser(''+${prod.id}+'');'"
    其实就是使用转义字符

你可能感兴趣的:(Thymeleaf th:onclick 进行js传值)