首页 > 代码库 > phantomjs1-访问百度

phantomjs1-访问百度

//s为success表示成功
var page = require(‘webpage‘);

page.open(‘https://www.baidu.com/‘,function(s){
	console.log(s);
	phantom.exit();
});


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1900435

phantomjs1-访问百度