Сообщение от rumwi
|
thisTest = this.test
|
Сообщение от rumwi
|
alert(x.this) // -> [Object HTMLDocument]
|
врёшь и не краснеешь
выведи this и возможно (вероятность есть) поймёшь, что на что указывает
<script>
x = {
test: "Test string",
thisObject: this,
thisTest: this.test
}
alert(this);
alert(this.x.test);
alert(x.test);
</script>