JavaScript中的this執行個體分析

來源:互聯網
上載者:User

以人為鏡,可知得失,看來這句話是很有道理的。

Demo 1 :
如果是一個全域的function,則this相當於window對象,在function裡定義的各種屬性或者方法可以在function外部存取到,前提是這個function需要被調用。

複製代碼 代碼如下:<script type="text/javascript">
//在function中使用this
function a() {
if (this == window) {
alert("this == window");
this.fieldA = "I'm a field";
this.methodA = function() {
alert("I'm a function ");
}
}
}
a(); //如果不調用a方法,則裡面定義的屬性會取不到
alert(window.fieldA);
methodA();
</script>

Demo 2 :
如果使用new的方式去執行個體化一個對象,則this不等於window對象,this指向function a的執行個體 複製代碼 代碼如下:<script type="text/javascript">
//在function中使用this之二
function a() {
if (this == window) {
alert("this == window");
}
else {
alert("this != window");
}
this.fieldA = "I'm a field";
}
var b = new a();
alert(b.fieldA);
</script>

Demo 3 :
使用prototype擴充方法可以使用this擷取到來源物件的執行個體,私人欄位無法通過原型鏈擷取 複製代碼 代碼如下:<script type="text/javascript">
//在function中使用this之三
function a() {
this.fieldA = "I'm a field";
var privateFieldA = "I'm a var";
}
a.prototype.ExtendMethod = function(str) {
alert(str + " : " + this.fieldA);
alert(privateFieldA); //出錯
};
var b = new a();
b.ExtendMethod("From prototype");
</script>

Demo 4 :
不管是直接引用function,還是執行個體化一個function,其返回的閉包函數裡的this都是指向window 複製代碼 代碼如下:<script type="text/javascript">
//在function中使用this之四
function a() {
alert(this == window);
var that = this;
var func = function() {
alert(this == window);
alert(that);
};
return func;
}
var b = a();
b();
var c = new a();
c();
</script>

Demo 5 :
在HTML中使用this,一般代表該元素本身 複製代碼 代碼如下:<div onclick="test(this)" id="div">Click Me</div>
<script type="text/javascript">
function test(obj) {
alert(obj);
}
</script>

Demo 6 :
在IE和Firefox(Chrome)下註冊事件,this分別指向window和元素本身 複製代碼 代碼如下:<div id="div">Click Me</div>
<script type="text/javascript">
var div = document.getElementById("div");
if (div.attachEvent) {
div.attachEvent("onclick", function() {
alert(this == window);
var e = event;
alert(e.srcElement == this);
});
}
if (div.addEventListener) {
div.addEventListener("click", function(e) {
alert(this == window);
e = e;
alert(e.target == this);
}, false);
}
</script>

以上就是我總結的this在javascript中的不同應用情境,可能還有其他的情況不一而足,以後發現了會補充進來。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.