javascript中的this(2)
this . _traceXhr ( xhr ); // error here! 'this' is xhr now
}
},
_traceXhr : function ( _xhr ){
console . log ( _xhr );
}
}
</ script >
这里的错误比较明显了吧,function() {this._traceXhr(xhr);}是个函数,这时候是绑定到xhr上运行的,那里面的this自然就指向xhr而不再是o2。
正确的写法是o2._traceXhr(this); (ps,实际的应用中可能是这样的,一般会定义一个“类”,噢o2只是这个类的实例,那么定义类的时候需要这样写:
< script type = "text/javascript" >
function ClazzO (){
}
ClazzO . prototype . xhr = null ;
ClazzO . prototype . execute = function (){
var _self = this ;
xhr . onreadystatuschange = function (){
_self . _traceXhr ( this );
}
}
ClazzO . prototype . _traceXhr = function ( _xhr ){
console . log ( _xhr );
}
</ script >
execute里用一个临时变量保存一下善变的this,防止到了onxxxchange里面的时候找不到他了。
主要是这一类问题导致this的变化,另外还有一些是和dom对象联系在一起的
2. dom对象event里的this
a: <input type = "button" id = "a" onclick = " javascript : console . log ( this . value ) " value = "click me a" />
这种写法输出结果和我们想的一样:click this。但有些同学就提意见了,在html里面夹杂太多的js代码不好,而且有时由于函数太复杂含有' or "导致根本不能写在这里面,最好抽出来放到一个函数里:
b: <input type = "button" id = "b" onclick = " javascript : clicked () " value = "click me b" />
<script type = "text/javascript" >
function clicked () {
console . log ( this . value );
}
</script>
来看浏览器帮我们做了什么: onclick="[js code]"
浏览器会帮我们生成(这点我不确定,但按这种方式理解可以行得通)
[dom].onclick = function() {[js code]}
好,看看上面两个都发生了什么:
<script type = "text/javascript" >
// a
document . getElementById ( "a" ). onclick = function () {
相关新闻>>
- Javascript 兼容 IE6、IE7、FF 的“加入收藏”“设为首页”
- 好好学一遍JavaScript 笔记(一)——基础中的基础
- 好好学一遍JavaScript 笔记(二)——encode、数组、对象创建
- 好好学一遍JavaScript 笔记(三)——StringBuffer、prototype
- 好好学一遍javaScript 笔记(四)——Attribute、HTML元素、文档碎
- 好好学一遍JavaScript 笔记(五)——正则表达式基础
- 好好学一遍JavaScript 笔记(六)——正则表达式基础二
- 好好学一遍JavaScript 笔记(七)——RegExp对象与常用正则
- 好好学一遍JavaScript 笔记(八)——冒泡型事件、捕获型事件
- JavaScript详解
- 发表评论
-
- 最新评论 更多>>