- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕捕获
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - onLoadStarted()
当页面开始加载时会调用此回调。
语法
其语法如下 −
wpage.onLoadStarted = function() {}
示例
var wpage = require('webpage').create(); wpage.onLoadStarted = function() { console.log('File has started Loading'); } wpage.open("https://127.0.0.1/tasks/file.html", function(status) { console.log(status); });
以上程序生成以下输出。
File has started Loading Success
phantomjs_webpage_module_events_callbacks.htm
广告