码迷,mamicode.com
首页 > 其他好文 > 详细

事件对象及其属性

时间:2017-02-12 11:12:12      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:pre   技术分享   class   target   对象   http   over   dom   tar   

$(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);
    });
    
});

技术分享

 

事件对象及其属性

标签:pre   技术分享   class   target   对象   http   over   dom   tar   

原文地址:http://www.cnblogs.com/by-dxm/p/6390529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!