我正在尝试使用以下方法加载其他.js脚本:
["http://code.jquery.com/jquery-2.1.1.js","http://someotrherscript.js"]
在jsdom.jQueryify
jsdom.jQueryify(window,
["http://code.jquery.com/jquery-2.1.1.js","http://someotrherscript.js"], function () {
window.$("body").append('<div class="testing">Hello World, It works</div>');
console.log(window.$(".testing").text());
});
它不起作用,我缺少什么?
答案 0 :(得分:0)
...解决
var scriptEl = window.document.createElement("script");
scriptEl.src = "/Library/WebServer/Documents/www/jqPlot/jquery.jqplot.js";
window.$("body").append(scriptEl);