- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕捕获
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 范例
- PhantomJS 实用资源
- PhantomJS - 快速指南
- PhantomJS - 实用资源
- PhantomJS - 讨论
PhantomJS - onPageCreated()
当页面打开新的子窗口时会调用此回调。
语法
其语法如下所述 −
wpage.onPageCreated = function(newPage) {}
范例
以下示例展示如何使用 onPageCreated() 方法。
var wpage = require('webpage').create();
wpage.onPageCreated = function(newpage) {
console.log("Entering in onPageCreated callback");
console.log(newpage.url);
}
wpage.open('https:///tasks/newwindow.html', function(status) {
console.log(status);
});
newwindow.html
<html>
<head>
<title>Welcome to phantomjs</title>
</head>
<body>
<script type = "text/javascript">
window.onload = function() {
window.open("test.html", "window1");
}
</script>
<h1>This is a test page</h1>
</body>
</html>
上述程序会产生以下 输出。
Entering in onPageCreated callback WebPage(name = "WebPage") Success
phantomjs_webpage_module_events_callbacks.htm
广告