控制台上抛出异常。为什么会抛出这个异常?抛出此异常后,onchange下拉列表不再起作用。我该怎么做才能防止这种情况发生
Uncaught TypeError: Object function () {
if (this instanceof String) {
if (this.indexOf("%") != -1) {
return this;
}
}
return this + "px";
} has no method 'push'
Javascript中的方法
Object.prototype.measurement = function() {
if (this instanceof String) {
if (this.indexOf("%") != -1) {
return this;
}
}
return this + "px";
};
答案 0 :(得分:0)
通过从
更改函数定义来解决问题Object.prototype.measurement = function() {}
到
function measurement(position) {}