window.event.srcElement与window.event.target 触发事件的元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.event.srcElement与window.event.target 触发事件的元素相关的知识,希望对你有一定的参考价值。
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 触发事件的元素的主要内容,如果未能解决你的问题,请参考以下文章