【发布时间】:2014-05-27 05:34:20
【问题描述】:
我正在向我的页面添加自定义主干.js 脚本,它需要位于页面末尾,
我已经查看了将脚本添加到 html 头部的解决方案,如下所述:Enlive templates – add to head section
很遗憾,我需要在页面底部添加脚本。
<html>
<head><!-- all the normal css and js scripts--></head>
<body>
<div> <!-- html content that will be used by my scripts --> </div>
<!-- this is where i want to append custom javascripts -->
</body>
</html>
【问题讨论】: