# 设置属性的值
<div><h2>问题</h2>
<p>在你解析一个Document之后可能想修改其中的某些属性值,然后再保存到磁盘或都输出到前台页面。</p>
<h2>方法</h2>
<p>可以使用属性设置方法 <code><a title="Set an attribute value on this element." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#attr%28java.lang.String,%20java.lang.String%29">Element.attr(String
key, String value)</a></code>, 和 <code><a title="Set an attribute on all matched elements." href="http://jsoup.org/apidocs/org/jsoup/select/Elements.html#attr%28java.lang.String,%20java.lang.String%29">Elements.attr(String
key, String value)</a></code>.</p>
<p>假如你需要修改一个元素的 <code>class</code> 属性,可以使用
<code><a title="Add a class name to this element's class attribute." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#addClass%28java.lang.String%29">Element.addClass(String
className)</a></code> 和 <code><a title="Remove a class name from this element's class attribute." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#removeClass%28java.lang.String%29">Element.removeClass(String
className)</a></code> 方法。</p>
<p><code><a title="A list of Elements, with methods that act on every element in the list." href="http://jsoup.org/apidocs/org/jsoup/select/Elements.html">Elements</a></code>
提供了批量操作元素属性和class的方法,比如:要为div中的每一个a元素都添加一个
<code>rel="nofollow"</code> 可以使用如下方法:</p>
<pre><code>doc.select("div.comments a").attr("rel", "nofollow");
</code></pre>
<h2>说明</h2>
<p>与<code><a title="A HTML element consists of a tag name, attributes, and child nodes (including text nodes and other elements)." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html">Element</a></code>中的其它方法一样,<code>attr</code> 方法也是返回当 <code><a title="A HTML element consists of a tag name, attributes, and child nodes (including text nodes and other elements)." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html">Element</a></code>
(或在使用选择器是返回 <code><a title="A list of Elements, with methods that act on every element in the list." href="http://jsoup.org/apidocs/org/jsoup/select/Elements.html">Elements</a></code>
集合)。这样能够很方便使用方法连用的书写方式。比如:</p>
<pre><code>doc.select("div.masthead").attr("title", "jsoup").addClass("round-box");
</code></pre><br></div>
- Introduction
- 爬虫相关技能介绍
- 爬虫简单介绍
- 爬虫涉及到的知识点
- 爬虫用途
- 爬虫流程介绍
- 需求描述
- Http请求处理
- http基础知识介绍
- http状态码
- httpheader
- java原生态处理http
- URL类
- 获取URL请求状态
- 模拟Http请求
- apache httpclient
- Httpclient1
- httpclient2
- httpclient3
- httpclient4
- httpclient5
- httpclient6
- okhttp
- OKhttp使用教程
- 技术使用
- java执行javascript
- 网页解析
- Xpath介绍
- HtmlCleaner
- HtmlCleaner介绍
- HtmlCleaner使用
- HtmlParser
- HtmlParser介绍
- Jsoup
- 解析和遍历一个HTML文档
- 解析一个HTML字符串
- 解析一个body片断
- 从一个URL加载一个Document
- 从一个文件加载一个文档
- 使用DOM方法来遍历一个文档
- 使用选择器语法来查找元素
- 从元素抽取属性,文本和HTML
- 处理URLs
- 示例程序 获取所有链接
- 设置属性的值
- 设置一个元素的HTML内容
- 消除不受信任的HTML (来防止XSS攻击)
- 正则表达式
- elasticsearch笔记
- 下载安装elasticsearch
- 检查es服务健康