PhantomJS framePlainText 属性

PhantomJS framePlainText 属性

该属性返回当前活动帧的内容,但只返回没有任何HTML标签的内容。

语法

其语法如下:

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

示例

让我们举一个示例来理解framePlainText属性的用法。

var wpage = require('webpage').create(); 
wpage.open('http://localhost/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 = "http://localhost/tasks/a.html" width = "800" height = "800" 
         name = "myframe" id = "myframe"></iframe> 
      <h1>dddddddddd</h1> 
   </body> 

</html>

它将产生以下 输出

success  
dddddddddd

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程