标签:
IE浏览器支持window.event.srcElement , 而firefox支持window.event.target;
<input type="text" onblur="alert(this.value)">//正确滴
******************
<input type="text" onblur="method()">//错的啦
<script>
function method(){
alert(this.value);
}
</script>
*******************
<input type="text" onblur="method(this)">//又对啦
<script>
function method(ipt){
alert(ipt.value);
}
</script>
*****************
<input type="text" onblur="method()">// 正确
<script>
function method(){
alert(window.event.srcElement.value);//用window.event.srcElement取得触发事件的控件,俺就是这么酷-.-
}
</script>
***************
window.event.srcElement与window.event.target 触发事件的元素
标签:
原文地址:http://www.cnblogs.com/vagebird/p/5525252.html