如何从PhantomJS中的DOM中提取一些源代码?

时间:2016-07-09 03:23:17

标签: javascript dom phantomjs

我试图从网站获取某些数据,虽然它不是实际文本,而是div的实际类名(这是我想要的数据存储的位置)。

righWheel = bytearray(b'\xc0\x00')

所以我的问题是,在PhantomJS中,我将如何检索这些实际数据?

1 个答案:

答案 0 :(得分:1)

var page = require('webpage').create();
page.open('http://example.com/', function() {

    var className = page.evaluate(function(){
        return document.getElementById("id").className;
    });        

    console.log(className);
    phantom.exit();

});