PhantomJS includeJS()
includeJs 方法在页面上执行外部JS文件,并在完成后执行回调函数。
语法
其语法如下所示−
var wpage = require('webpage').create();
wpage.includeJs(jsfile,function(){});
示例
下面的示例展示了使用 includeJs() 方法的用法。
var wpage = require('webpage').create();
wpage.onConsoleMessage = function (str) {
console.log('CONSOLE: ' + msg);
}
wpage.open('http://localhost/tasks/a.html', function(status) {
wpage.includeJs('http://localhost/tasks/testscript.js', function() {
var foo = wpage.evaluate(function() {
return testcode();
});
console.log(foo);
});
});
testscript.js
function testcode () {
return "welcome to phantomjs";
}
以上程序生成以下输出。 输出 。
welcome to phantomjs