常用到的一些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方法,记录一下的主要内容,如果未能解决你的问题,请参考以下文章

FTL页面常用到的一些方法comboboxcombotreedatagrid

moment.js的常用方法

几个关于js数组方法reduce的经典片段

swift常用代码片段

用JS来理解设计模式

几个关于js数组方法reduce的经典片段