问题
When I use the Router in Backbone.js, IE6 throw a Permission Denied on the following line:
if (this.iframe && (frag != this.getFragment(this.iframe.location.hash)))
the Backbone.js version is 0.5.3 , I also try some other version, but it is not work also.
回答1:
The Backbone.js router does work in IE6, but it uses hash fragment routing (http://domain/#route) instead of HTML5 history push state routing (http://domain/route)
回答2:
As far as I know backbone.js does not claim to support IE6
来源:https://stackoverflow.com/questions/7550912/backbone-js-router-doesnt-work-on-ie6