Knockout.js (JS) code "accidentally called a method or property" error in IE

Source: Internet
Author: User

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 var CartListViewModel = function () {     var self = this;    self.payment = [                 { name: "", value: 1 },                 { name: "", value: 2 },             ];    self.items = ko.observableArray([]);    // {‘id‘:1,‘data‘:[‘aa‘,‘bb‘]}    self.load = function () {                var data = <%=cartListMap %>;                  var items = new Array();         for (var i in data) {             var dataItem = data[i];            var cartItem = new CartItemViewModel()             。。。            items.push(cartItem);         }         self.items(items);     };    self.TotalSum = function(){         var totalsum = 0;         var ilength = this.items().length;         for(var idx = 0; idx < ilength; idx++)         {             var iItem = this.items()[idx];             if (iItem.selected())             {                 totalsum = totalsum + iItem.goodsPrice();             }         }            return totalsum.toFixed(2);                }}

The above section Knockout.js code, where the Totalsum function, return totalsum, (the original code) runs normally in FF, but in IE the error "method or property was called unexpectedly" is always present. Later after the code is added tofixed (2) after normal.

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.