PhantomJS pagesWindowName 属性
pagesWindowName 属性返回使用 window.open 打开的窗口的名称。
语法
语法如下所示 −
var wpage = require('webpage').create();
wpage.pagesWindowName;
示例
让我们来举一个示例来理解 pagesWindowName 属性的使用。
var wpage = require('webpage').create();
wpage.open('http://localhost/tasks/ptitle.html', function (status) {
console.log(wpage. pagesWindowName);
phantom.exit();
});
ptitle.html
<html>
<head>
<title>Testing PhantomJs</title>
</head>
<body>
<script type = "text/javascript">
window.onload = function() {
window.open("http://localhost/tasks/a.html","page1");
window.open("http://localhost/tasks/content.html", "page2");
}
</script>
<h1>This is a test page</h1>
</body>
</html>
它将会产生以下 输出 。
page1, page2
输出给出了使用window.open命令打开的页面名称的数组。如果窗口已关闭,则不予考虑。