function SelfTest(){ //# selfの挙動確認① //# (global scopeにおいてselfとthisが同じになる事の確認) $('#result1_1').text(window.self === window); //想定=true $('#result1_2').text(window.self === this); //想定=true $('#result1_3').text(this === window); //想定=true //# 上記式が成り立つのでプロパティにアクセスしても同じ値になる $('#result1_4').text("Height:"+window.innerHeight+" Width:"+window.innerWidth); $('#result1_5').text("Height:"+self.innerHeight+"