我正在测试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;
}, ....
是否有解决方法来避免此错误?
答案 0 :(得分:1)
可能不是。 从他们的文件
我们的polyfills适用于常青树的最新版本 浏览器强>
这是webcomponenets.js的浏览器支持矩阵
https://github.com/WebComponents/webcomponentsjs#browser-support