PhantomJS canGoBack Property
canGoBack属性如果导航历史中存在前一个页面,则返回true;否则返回false。
语法
它的语法如下:
page.canGoBack;
示例
以下示例演示了使用 canGoBack 属性。
var wpage = require('webpage').create();
console.log(wpage.canGoBack);
phantom.exit();
这将会生成以下输出 output −
False