PhantomJS - pagesWindowName 属性



pagesWindowName 属性返回使用 window.open 打开的窗口的名称。

语法

其语法如下 −

var wpage = require('webpage').create(); 
wpage.pagesWindowName;

示例

让我们通过示例来了解 pagesWindowName 属性的使用。

var wpage = require('webpage').create(); 
wpage.open('https://127.0.0.1/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("https://127.0.0.1/tasks/a.html","page1"); 
            window.open("https://127.0.0.1/tasks/content.html", "page2"); 
         } 
      </script> 
      <h1>This is a test page</h1> 
   </body>
   
</html>

它将生成以下 输出

page1, page2

输出给出了一系列使用 window.open 命令打开的页面名称。如果窗口已关闭,则不予考虑。

phantomjs_webpage_module_properties.htm
广告