PhantomJS - framePlainText 屬性



該屬性提供當前活動框架的內容,但只有不帶任何 HTML 標記的內容。

語法

它的語法如下所示 −

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

示例

讓我們舉一個例子來理解 framePlainText 屬性的使用。

var wpage = require('webpage').create(); 
wpage.open('https:///tasks/content.html', function (status) { 
   console.log(status); 
   console.log(wpage.framePlainText); 
   phantom.exit(); 
});

content.html

<html> 
   <head>
      <title>welcome to phantomjs</title>
   </head> 
   
   <body name = "content"> 
      <script type = "text/javascript"> 
         window.name = "page2"; 
         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>

它會產生以下 輸出

success  
dddddddddd
phantomjs_webpage_module_properties.htm
廣告
© . All rights reserved.