欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iframe里面加载html标签数据并解析

程序员文章站 2022-05-29 07:56:04
...

数据示例

<p>
	11
</p>
<p>
	131
</p>
<p>
	1
</p>
<p>
	<br />
</p>
<iframe id="content" scrolling="yes" border="0" frameborder="0" width="100%" height="100%">
    </iframe>
  var o = document.getElementById("content");
                    o.contentWindow.document.body.innerText = "";
                    ed = document.all ? o.contentWindow.document : o.contentDocument;
                    ed.open();
                    ed.write(data.htmlBody == undefined ? '' : data.htmlBody);
                    ed.close();

转码解码方法

StringEscapeUtils.unescapeHtml4(htmlBody);
StringEscapeUtils.escapeHtml4(htmlBody)
相关标签: 后端 技术