如何用js 将字符串转换成 html
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用js 将字符串转换成 html相关的知识,希望对你有一定的参考价值。
什么意思,是要把字符串转化为html形式输出到页面上吗,是的话,js就用.innerHTML,jquery就用.html() 参考技术A function HTMLDecode(text)var temp = document.createElement("div");
temp.innerHTML = text;
var output = temp.innerText || temp.textContent;
temp = null;
return output;
参考技术B js将字符串输出就可以啊,比如用document.write("<div style=\"color:#f00\">welcome china</div>");之类的
以上是关于如何用js 将字符串转换成 html的主要内容,如果未能解决你的问题,请参考以下文章