任何方式使jQuery.inArray()不区分大小写?

前端之家收集整理的这篇文章主要介绍了任何方式使jQuery.inArray()不区分大小写?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
标题总结。

解决方法

你可以使用 each()…
// Iterate over an array of strings,select the first elements that 
// equalsIgnoreCase the 'matchString' value
var matchString = "MATCHME".toLowerCase();
var rslt = null;
$.each(['foo','bar','matchme'],function(index,value) { 
  if (rslt == null && value.toLowerCase() === matchString) {
    rslt = index;
    return false;
  }
});
原文链接:https://www.f2er.com/jquery/183793.html

猜你在找的jQuery相关文章