我正在尝试在js中加载QUnit但是QUnit.js中的addevent函数永远不会被触发,它只是不起作用:
var appendQUnit = document.createElement('script');
appendQUnit.src = 'js/utility/qunit/qunit.js';
appendQUnit.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(appendQUnit);
答案 0 :(得分:6)
您可能还需要调用QUnit.load()来初始化QUnit:
$.getScript('js/utility/qunit/qunit.js', function(){
QUnit.load();
// here you can handle the qunit code
});
答案 1 :(得分:2)
您可以使用jquery的getScript
,例如:
$.getScript('js/utility/qunit/qunit.js', function() {
// here you can handle the qunit code
});
因为浏览器总是以异步模式加载javascript文件,所以需要一些回调来放置处理新加载的js代码的代码。
答案 2 :(得分:0)
在代码中使用以下内容或作为书签:
void(function foo()
{
/* get head element */
var head=document.getElementsByTagName("head")[0];
/* create script and link elements */
var qUnitJS = document.createElement("script");
var qUnitCSS = document.createElement("link");
/* link rel and type attributes required for lazy loading */
qUnitCSS.rel="stylesheet";
qUnitCSS.type="text/css";
/* define script src attribute to lazy load */
qUnitJS.src = "http://qunitjs.com/resources/qunit.js";
/* append script and link elements */
head.appendChild(qUnitJS);
head.appendChild(qUnitCSS);
/* define link href after DOM insertion to lazy load */
qUnitCSS.href="http://qunitjs.com/resources/qunit.css";
/* call tests after QUnit loads */
qUnitJS.onload = function () {};
}() )
javascript:void(function foo(){var head=document.getElementsByTagName("head")[0]; var qUnitJS = document.createElement("script"); var qUnitCSS = document.createElement("link"); qUnitCSS.rel="stylesheet"; qUnitCSS.type="text/css"; qUnitJS.src = "http://qunitjs.com/resources/qunit.js"; head.appendChild(qUnitJS); head.appendChild(qUnitCSS); qUnitCSS.href="http://qunitjs.com/resources/qunit.css"; qUnitJS.onload = function () {};}() )
在Firefox中,在security.mixed_content.block_active_content
中将about:config
设置为false以将mixed active content作为书签运行。
<强>参考强>