- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 杂项
- 命令行界面
- PhantomJS - 屏幕捕获
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - canGoForward 属性
如果浏览历史中有下一页,**canGoForward** 属性返回 true,否则返回 **false**。
语法
语法如下所述 −
page.canGoForward;
示例
我们来看 **canGoForward** 属性的一个示例。
var wpage = require('webpage').create(); console.log(wpage.canGoForward); phantom.exit();
上述程序生成以下 **输出**。
False
phantomjs_webpage_module_properties.htm
广告