- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕截图
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- REPL 交互式界面
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomsJS - title 属性
此属性返回您正在阅读的页面的标题。
语法
其语法如下所示 −
var wpage = require('webpage').create(); wpage.title;
示例
以下示例展示了 title 属性的用法。
var wpage = require('webpage').create(); wpage.open('https://127.0.0.1/tasks/ptitle.html', function (status) { console.log(wpage.title); phantom.exit(); });
上述程序生成以下 输出 。
Testing PhantomJs
phantomjs_webpage_module_properties.htm
广告