事件对象及其属性
Posted 党兴明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事件对象及其属性相关的知识,希望对你有一定的参考价值。
$(function(){ $(\'input\').bind(\'click\',function(e){ alert(e); //获取对象 //event对象的属性 alert(e.type); alert(e.target); alert(e.currentTarget);//得到监听元素的DOM,target是点的那个的DOM }); $(\'input\').bind(\'mouseover\',function(e){ alert(e.relatedTarget); }); $(\'input\').bind(\'click\',123,function(e){ alert(e.data); }); $(document).bind(\'click\',function(e){ alert(e.pageX + \',\' + e.pageY); }); });
以上是关于事件对象及其属性的主要内容,如果未能解决你的问题,请参考以下文章