我正在向我的页面添加自定义主干.js 脚本,它需要位于页面末尾,
我已经查看了将脚本添加到 html 头部的解决方案,如下所述:Enlive 模板 – 添加到头部部分
不幸的是,我需要在页面底部添加脚本。
<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>