Home >Web Front-end >HTML Tutorial >html decode 方法_html/css_WEB-ITnose

html decode 方法_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:42:231280browse

当使用document.querySelector('dc6dce4a544fdca2df29d5ac0ea9906b') 获取元素时,发现html里某些特殊字符被处理和转意了,处理后格式如下:

<

>

&

''

  ………………

PS: 当我不熟悉正则的时候,想偷懒的时候,就借用HTMLDivElement object获取内容,竟然发现!!!尼玛全是“乱码”……

怎么办?

方法1:

写个html decode 方法,然后各种转换……

ps: 真心尼玛不靠谱啊! 有哪些特殊字符会被html处理掉,我都没搞太明白!

方法2:

var _textarea = document.createElement('textarea');_textarea.innerHTML =document.querySelector('#htmlCodeId').innerHTML;console.log( _textarea .value );// 用完后,强烈建议_textarea置空_textarea = null;

ps: 多、快、好、省  /^-^\

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn