【发布时间】:2014-12-05 14:46:37
【问题描述】:
我开始使用 Thymeleaf 并遇到以下问题。 在我的 HTML 模板中,我有这段代码:
<!-- Thymeleaf -->
<script src="../js/vendor/modernizr.js" th:src="@{js/vendor/modernizr.js}"></script>
<!--[if lt IE 9]>
<script src="../js/vendor/jquery-1.11.min.js" th:src="@{js/vendor/jquery-1.11.min.js}"></script>
<script src="../js/helpers/polyfills.js" th:src="@{js/helpers/polyfills.js}"></script>
<![endif]-->
当我在浏览器中打开它时,Thymeleaf 正在正确替换第一行的 URL,而对于 [if lt IE 9] 中的部分,没有任何处理。请比较:
<!-- Thymeleaf -->
<script src="js/vendor/modernizr.js"></script>
<!--[if lt IE 9]>
<script src="../js/vendor/jquery-1.11.min.js" th:src="@{js/vendor/jquery-1.11.min.js}"></script>
<script src="../js/helpers/polyfills.js" th:src="@{js/helpers/polyfills.js}"></script>
<![endif]-->
如何解决这个问题?
【问题讨论】: