Internet Explorer 9上的Webcomponents.js

时间:2015-06-17 03:56:16

标签: javascript polymer-1.0 google-web-component

我正在测试google聚合物是否适用于ie9。 webcomponents.min.js第11行发生错误,期待":" get()和href之间。以下是webcomponent.js文件的摘录:

...
jURL.prototype = {
    toString: function() {
      return this.href;
    },
    get href() {
      if (this._isInvalid) return this._url;
      var authority = "";
      if ("" != this._username || null != this._password) {
        authority = this._username + (null != this._password ? ":" + this._password : "") + "@";
      }
      return this.protocol + (this._isRelative ? "//" + authority + this.host : "") + this.pathname + this._query + this._fragment;
    }, ....

是否有解决方法来避免此错误?

1 个答案:

答案 0 :(得分:1)

可能不是。 从他们的文件

  

我们的polyfills适用于常青树的最新版本   浏览器

这是webcomponenets.js的浏览器支持矩阵

Support matrix https://github.com/WebComponents/webcomponentsjs#browser-support