phantomjs

var webpage = require('webpage');
var page = webpage.create();
page.open('http://www.baidu.com/', function (status) {
    var data;
    if (status === 'fail') {
        console.log('open page fail!');
    } else {
        console.log(page.content);//打印出HTML內容
    }
    page.render("test.png"); 
    page.close();//關閉網頁
    phantom.exit();//退出phantomjs命令行
});
複製代碼
相關文章
相關標籤/搜索