Javascript String对象扩展HTML编码和解码的方法
摘要:复制代码代码如下:String.prototype.HTMLEncode=function(){vartemp=document.creat...
复制代码 代码如下:
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;
}
【Javascript String对象扩展HTML编码和解码的方法】相关文章:
★ JavaScript对表格或元素按文本,数字或日期排序的方法