手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >Javascript String对象扩展HTML编码和解码的方法
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实现鼠标拖动效果的方法

javascript获取select值的方法分析

javascript基于DOM实现省市级联下拉框的方法

学习Javascript面向对象编程之封装

JavaScript中的pow()方法使用

JavaScript点击按钮后弹出透明浮动层的方法

JavaScript对传统文档对象模型的支持

JavaScript对表格或元素按文本,数字或日期排序的方法

javascript动态创建链接的方法

JavaScript实现表格点击排序的方法

精品推荐
分类导航