PhantomJS - plainText 屬性



plainText 屬性以純文字的形式返回網頁內容,不包含任何 html 標記。

語法

其語法如下 −

wpage.plainText 

示例

我們舉一個例子來理解 plainText 屬性的用法。

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

a.html

<html> 
   <head></head> 
   
   <body name = "a"> 
      <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> 

      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
      <h1>This is a test page</h1> 
   </body> 

</html> 

上述程式生成以下 輸出

This is a test page

This is a test page

This is a test page

This is a test page

This is a test page

This is a test page

This is a test page

This is a test page

This is a test page

plainText 屬性僅返回內容,不包含任何指令碼標記或 html 標記。

phantomjs_webpage_module_properties.htm
廣告
© . All rights reserved.