JavaScript の質問があまりにも基本的すぎて、それに答える適切な Google クエリを作成することさえできません。例として:
function Parent(name){
this.name = name;
}
Parent.prototype.Child() = function (){
if(this.name == 'Sam'){ // This is the comparison that obviously doesn't work
/* Do something */
} else {
/* Do something else */
}
}
var Parent1 = new Parent('Sam');
var Child1 = new Parent1.Child();
親の「名前」プロパティにアクセスするための比較で this の代わりに使用できるキーワードはありますか?
乾杯!