我正在尝试每隔一秒钟使用phantomjs通过类获取网页元素。
有我的代码:
page.open('https://google.com',
function(status) {
sukcesuj(status);
});
function sukcesuj(status){
console.log("starting");
if (status == 'success')
{
page.includeJs('http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js', function () {
page.evaluate(function() {
$('.ctr-p').each(function() {
console.log($(this).html());
});
});
});
setTimeout(function() {
sukcesuj(status);
}, 1000);
} else {
console.log('Unable to load the address! '+status);
phantom.exit();
}
}
控制台结果每次都只是“开始”,似乎幻象不会看到“ .ctr-p” div(谷歌页脚)。
我的代码有什么问题?