PhantomJS - frameContent 屬性



此屬性返回活動幀的內容。設定該屬性將重新載入此網頁的內容。

語法

語法如下所示 −

var page = require('webpage').create();
page.frameContent example;

示例

讓我們透過一個示例,來理解 **frameContent** 屬性是如何使用的。

var wpage = require('webpage').create(); 
wpage.open('https:///tasks/content.html', function (status) { 
   console.log(status); 
   console.log(wpage.frameContent); // gives the content of the active frame 
   phantom.exit(); 
}); 

上面的程式生成以下 **輸出**。

Success 
<html>
   <head></head> 
   
   <body> 
      <script type = "text/javascript"> 
         console.log('welcome to cookie example'); 
         document.cookie = "username = Roy; expires = Thu, 22 Dec 2017 12:00:00 UTC"; 
         
         window.onload =  function() { 
            console.log("page is loaded"); 
         } 
      </script> 
      
      <iframe src = "https:///tasks/a.html" width = "800" height = "800" 
         name = "myframe" id = "myframe"></iframe> 
      <h1>dddddddddd</h1> 
   </body>
   
</html>
phantomjs_webpage_module_properties.htm
廣告
© . All rights reserved.