一、HTML取值
<span th:text="${param.cid}"></san>
或者
<span>[[${param.cid}]]</span>
二、 JS取值
<script>
let cid=[[${param.cid}]];
console.log(cid);
</script>
<span th:text="${param.cid}"></san>
或者
<span>[[${param.cid}]]</span>
<script>
let cid=[[${param.cid}]];
console.log(cid);
</script>
文章链接: https://www.mfisp.com/12461.html
文章版权:梦飞科技所发布的内容,部分为原创文章,转载请注明来源,网络转载文章如有侵权请联系我们!
之前