js 常用操作

目录

一、数组包含

二、判空

三、数组遍历


​​​​​​​

一、数组包含


    /**
      * Returns the index of the first occurrence of a value in an array.
      * @param searchElement The value to locate in the array.
      * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.
      */
    indexOf(searchElement: T, fromIndex?: number): number;

Js Contains方法_weixin_30885111的博客-CSDN博客今天想要用JS判断集合中是否包含另一个集合。发现,Contains并不能达到所要的效果,查找之后发现了问题原来,js的contains方法用来查看dom元素的包含关系,并不是Java中数组的contains方。若js要判断数组的包含关系,应该用indexof $(document).ready(function() {var Arrays = ['11','22...https://blog.csdn.net/weixin_30885111/article/details/97910925?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_title~default-1.essearch_pc_relevant&spm=1001.2101.3001.4242.2

还有一些同学自己写的

js字符串没有contains方法, 自己写一个_往事随风的博客-CSDN博客/***string:原始字符串*substr:子字符串*isIgnoreCase:忽略大小写*/function contains(string, substr, isIgnoreCase) { if (isIgnoreCase) { string = string.toLowerCase(); substr = substr.toLowerCase();https://blog.csdn.net/zyjcxc/article/details/70500256?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-0.essearch_pc_relevant&spm=1001.2101.3001.4242.1

还有同学自己写了一套兼容的

javascript中的contains方法 - 特雷西one - 博客园在研究一个多级菜单联动的js时,发现contains方法,以前没有碰到过,不知何意,然后在@司徒正美的博客发现有详细介绍,暂且摘录在此。 IE有许多好用的方法,后来都被其他浏览器抄袭了,比如这个conhttps://www.cnblogs.com/cuixi/p/3409918.html

javascript中的contains方法_hsany330的专栏-CSDN博客_js有contains方法吗在研究一个多级菜单联动的js时,发现contains方法,以前没有碰到过,不知何意,然后在@司徒正美的博客发现有详细介绍,暂且摘录在此。  IE有许多好用的方法,后来都被其他浏览器抄袭了,比如这个contains方法。如果A元素包含B元素,则返回true,否则false。唯一不支持这个方法的是IE的死对头firefox。不过火狐支持compareDocumentPosition() 方法,这是...https://blog.csdn.net/hsany330/article/details/105494920/

二、判空

//判断字符是否为空的方法
function isEmpty(obj){
    if(typeof obj == "undefined" || obj == null || obj == ""){
        return true;
    }else{
        return false;
    }
}

js判断字符是否为空的方法 - 水狼一族 - 博客园https://www.cnblogs.com/shuilangyizu/p/7744111.html

js判断为空Null与字符串为空简写方法 - 我的过去 - 博客园常用判断用户未输入,很常用的。https://www.cnblogs.com/daysme/p/6979231.html

三、数组遍历

js中map()方法的使用_WwangXue的博客-CSDN博客_js中的map使用方法<script type="text/javascript"> var arr = [10,20,30] var result = arr.map(function (item,index,array) { console.log(array[index]) return item+10 }) console.log(result)</scri...https://blog.csdn.net/WwangXue/article/details/82802282

https://www.jb51.net/article/204620.htmhttps://www.jb51.net/article/204620.htm

你可能感兴趣的:(快速开发,javascript,开发语言,ecmascript)