- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- 网络服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕捕获
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - onClosing()
此方法会在窗口被关闭时调用,可能是使用 page.close() 函数或 window.close() 函数关闭的。
语法
其语法如下 −
var wpage = require('webpage').create(); wpage.onClosing = function(str) {}
示例
var wpage = require('webpage').create(); wpage.onClosing = function(str) { console.log("page is closed"); } wpage.open('https://127.0.0.1/tasks/closing.html', function(status) { console.log(status); wpage.close(); });
上述程序会生成以下 输出。
success page is closed
phantomjs_webpage_module_events_callbacks.htm
广告