Home  >  Article  >  Web Front-end  >  Javascript String object extends HTML encoding and decoding methods_javascript tips

Javascript String object extends HTML encoding and decoding methods_javascript tips

WBOY
WBOYOriginal
2016-05-16 18:51:58858browse
复制代码 代码如下:

String.prototype.HTMLEncode = function() {
var temp = document.createElement ("div");
(temp.textContent != null) ? (temp.textContent = this) : (temp.innerText = this);
var output = temp.innerHTML;
temp = null;
return output;
}

String.prototype.HTMLDecode = function() {
var temp = document.createElement("div");
temp.innerHTML = this;
var output = temp.innerText || temp.textContent;
temp = null;
return output;
}
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