常用到的一些js方法,记录一下
Posted 2020走好,2021你好!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用到的一些js方法,记录一下相关的知识,希望对你有一定的参考价值。
获取字符串长度
function GetStringLength(str) { return str.replace(/[^x00-xff]/g, "01").length; }
通过js对html转义和反转义
function htmlEncode(html) { var temp = document.createElement("div"); (temp.textContent != null) ? (temp.textContent = html) : (temp.innerText = html); var output = temp.innerHTML; temp = null; return output; } function HTMLDecode(text) { var temp = document.createElement("div"); temp.innerHTML = text; var output = temp.innerText || temp.textContent; temp = null; return output; }
以上是关于常用到的一些js方法,记录一下的主要内容,如果未能解决你的问题,请参考以下文章