我正在尝试在使用引导程序框架时弄清楚如何包含外部javascript文件。我认为它应该很简单,但它似乎让我适合。
我有scripts/dsc.js
我想加载到<div id="loadedContent"></div>
JSP文件中的代码行是:
<li><a href="#" onclick="loadLocation('content/current.jsp');return false;">View Job (All Runs)</a></li>
在外部javascript文件中我将此作为我的简单javascript:
$(function() {
alert("Hi");
loadlLocation = function(location) {
$("#includedContent").load(location);
};
});
我把它放在头部声明中:
<script src="scripts/dsc.js" type="text/javascript"></script>
我知道src
路径是正确的,因为另一个包含引导脚本的工作正常。 dsc.js
中的警告未显示,表示我未将其包括在内。现在,默认情况下Bootstrap被加载到底部(所以我把它留在那里),但我在头部声明中包含了我的javascript文件。使用Bootstrap时,我是否需要做一些特殊的事情来包含javascript文件?
答案 0 :(得分:0)
那不能工作!您无权访问jQuery Wrapper!
var loadlLocation = function(location) {
$(function() {
$("#includedContent").load(location);
});
};
答案 1 :(得分:0)
它实际上最终成为订购问题。 KirKill已经在这里解决了。
How do i add jquery ui date picker, while already working with bootstrap library?