gpt4 book ai didi

javascript - 使用 javascript 的 Thymeleaf 页面布局

转载 作者:行者123 更新时间:2023-12-03 02:25:55 24 4
gpt4 key购买 nike

我有几个 Thymeleaf 模板,其中包括通用菜单横向模板

  <div th:replace="tdk/common/menu :: [//div[@id='menu']]"></div>

我想在此通用模板中包含通用 JavaScript 函数:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">


<script th:inline="javascript">
/*<![CDATA[*/

function repeatMe() {
alert('lalala');
}
var interval = setInterval(function() { repeatMe(); }, 1000);
repeatMe(); // To start it immediately

/*]]>*/
</script>
<div>
...
</div>
</html>

但是当我看到生成的模板的源代码时,我意识到没有包含Javascript

最佳答案

您需要将脚本放置在 div 元素中。

!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<div>

<script th:inline="javascript">
/*<![CDATA[*/

function repeatMe() {
alert('lalala');
}
var interval = setInterval(function() { repeatMe(); }, 1000);
repeatMe(); // To start it immediately

/*]]>*/
</script>

</div>
</html>

关于javascript - 使用 javascript 的 Thymeleaf 页面布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48945493/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com