# 设置一个元素的HTML内容
<div>
<h1><span style="font-size: 14px; line-height: 1.5;"></span></h1></div><b style="background-color: rgb(255, 255, 255); font-size: 21px;">问题</b><div><h1><span style="font-size: 14px; line-height: 1.5;"></span></h1>
<p>你需要一个元素中的HTML内容</p>
<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>中的HTML设置方法具体如下:</p>
<pre><code>Element div = doc.select("div").first(); // <div></div>
div.html("<p>lorem ipsum</p>"); // <div><p>lorem ipsum</p></div>
div.prepend("<p>First</p>");//在div前添加html内容
div.append("<p>Last</p>");//在div之后添加html内容
// 添完后的结果: <div><p>First</p><p>lorem ipsum</p><p>Last</p></div>
Element span = doc.select("span").first(); // <span>One</span>
span.wrap("<li><a href='http://example.com/'></a></li>");
// 添完后的结果: <li><a href="http://example.com"><span>One</span></a></li>
</code></pre>
<h2>说明</h2>
<ul>
<li><code><a title="Set this element's inner HTML." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#html%28java.lang.String%29">Element.html(String
html)</a></code> 这个方法将先清除元素中的HTML内容,然后用传入的HTML代替。</li>
<li><code><a title="Add inner HTML into this element." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#prepend%28java.lang.String%29">Element.prepend(String
first)</a></code> 和 <code><a title="Add inner HTML to this element." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#append%28java.lang.String%29">Element.append(String
last)</a></code> 方法用于在分别在元素内部HTML的前面和后面添加HTML内容</li>
<li><code><a title="Wrap the supplied HTML around this element." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#wrap%28java.lang.String%29">Element.wrap(String
around)</a></code> 对元素包裹一个外部HTML内容。</li>
</ul>
<h2>参见</h2>
<p>可以查看API参考文档中 <code><a title="Create a new element by tag name, and add it as the first child." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#prependElement%28java.lang.String%29">Element.prependElement(String
tag)</a></code>和<code><a title="Create a new element by tag name, and add it as the last child." href="http://jsoup.org/apidocs/org/jsoup/nodes/Element.html#appendElement%28java.lang.String%29">Element.appendElement(String
tag)</a></code> 方法来创建新的元素并作为文档的子元素插入其中。</p></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服务健康