我最近发现在我的代码中无法访问 bootstrap 的导入。即,jQuery 的插件警报在我的代码中不可用(jQuery.fn.alert
未定义)。我在标题中:
<script src="@routes.Assets.at("lib/jquery/jquery.min.js")"
type="text/javascript"></script>
<script src="@routes.Assets.at("lib/bootstrap/js/bootstrap.min.js")"
type="text/javascript"></script>
在体内:
<body>
@playscalajs.html.scripts("client")
</body>
在客户端脚本中,当它调用时$("...").alert()
,我收到错误:alert is not a function
,尽管我验证了引导程序确实定义了它。
如何让 bootstrap 和 playscalajs 很好地协同工作?