var webpage = require(‘webpage‘);
var page = webpage.create();
var url = "https://www.baidu.com/";
page.onConsoleMessage = function(msg){
console.log(‘Page title is ‘ + msg);
}
page.open(url,function(s){
if (s == "success") {
page.evaluate(function(){
console.log(document.title);
});
phantom.exit();
};
});本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1900437
原文地址:http://suyanzhu.blog.51cto.com/8050189/1900437