- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- 网络服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 截屏
- PhantomJS - 网页自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - goBack()
如果只锁定导航,则此函数会返回导航历史记录中的上一页。
语法
其语法如下 -
wpage.goBack()
示例
var wpage = require('webpage').create(); wpage.open('https://127.0.0.1/tasks/test.html', function(status) { var value = wpage.goBack(); console.log(value); phantom.exit(); });
上面的程序生成如下输出。
False
phantomjs_webpage_module_methods.htm
广告