首頁  >  文章  >  web前端  >  Javascript String对象扩展HTML编码和解码的方法_javascript技巧

Javascript String对象扩展HTML编码和解码的方法_javascript技巧

WBOY
WBOY原創
2016-05-16 18:51:58858瀏覽
复制代码 代码如下:

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;
}
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn