フォームページを作成するとき、2つのjsオブジェクトがまったく同じであるかどうかを判断したいと思います。
スタックオーバーフローに関する解決策は次のとおりです。ここに記録してください。
Object.prototype.equals = function(x )
{
var p;
for(p in this) {
if(typeof(x[p])=='未定義') {return false;}
}
for( p in this) {
if (this[p]) {
switch(typeof(this[p])) {
case 'オブジェクト':
if (!this[p ].equals (x[p])) { return false; } ブレーク;
case '関数':
if (typeof(x[p])=='未定義' ||
(p ! = 'equals ' && this[p].toString() != x[p].toString()))
return false
break;
default:
if (this[p] != x [p]) { return false; }
}
} else {
if (x[p])
return
}
}
(x の p) {
if(typeof(this[p])=='未定義') {return false;}
}
return
}