- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行接口
- PhantomJS - 屏幕截图
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速入门
- PhantomJS - 有用资源
- PhantomJS - 讨论
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
广告