Home > Web Front-end > JS Tutorial > body text

How to solve the problem that JavaScript find method does not support IE

小云云
Release: 2018-01-30 13:24:00
Original
2006 people have browsed it

This article mainly brings you a brief discussion on the problem that the JavaScript find method does not support IE. The editor thinks it is quite good, so I will share it with you now and give it as a reference for everyone. Let’s follow the editor to take a look, I hope it can help everyone.

Recently, I encountered a JavaScript problem during front-end development.

<script type="text/javascript">
  var arrayList = new Array();
  arrayList.push(1);
  arrayList.push(2);
  arrayList.push(3);
  arrayList.push(4);
 
  arrayList.find(function (val) {
    if (val == 4) {
      console.log(&#39;This is a test&#39;);
    }
  });
</script>
Copy after login

Using Chrome and Firefox, the running results are normal. However, the error "The object does not support the find attribute or method" did appear in IE.

After reading the official document, I found that it does not support IE.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find

##Related recommendations:


javascript find method to find elements

ThinkPHP find method to query a data record

find in thinkphp mode Method invalid

The above is the detailed content of How to solve the problem that JavaScript find method does not support IE. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template