使用springboot+thymeleaf,如何使用js或者jQuery动态修改
<div id="tables" th:include="backstage/shoppingMall/orderAll::html"></div>
这种标签的th:include值,就像动态修改iframe的src一样?
function toAllOrders() {
$("#tables").attr("th:include","backstage/shoppingMall/orderAll::html");
}
这种方式不起作用
在js函数里面是不能动态修改类似th属性的值的
th标签是在后端渲染的,在前端怎么修改也不会有效果。