Javascript solves IE8 and the following methods that do not support the every function

Source: Internet
Author: User
The javascriptevery () method is used to test whether all elements of the array have passed the test of the specified function. However, IE8 and the following browsers do not support the every method. This article introduces how to solve IE8 and the following methods that do not support the every function. For more information about the code farmers, see. In version 5th, EveryAdded to ECMA-262 standards; therefore not supported in some implementation environments. You can put the following code at the beginning of the script to solve this problem. This Code allows EveryIs Used in the implementation environment. This algorithm is specified in ECMA-262 5th, assuming ObjectAnd TypeErrorHas their initial values, and Fun. callEquivalent Function. prototype. call.

If (! Array. prototype. every) {Array. prototype. every = function (fun/*, thisArg */) {'use strict '; if (this = void 0 | this = null) throw new TypeError (); var t = Object (this); var len = t. length >>> 0; if (typeof fun! = 'Function') throw new TypeError (); var thisArg = arguments. length> = 2? Arguments [1]: void 0; for (var I = 0; I <len; I ++) {if (I in t &&! Fun. call (thisArg, t [I], I, t) return false ;}return true ;};}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.