nction(){
            //  基本事件
            // $(".child").click(function(){
            //     console.log(0)
            // })
            // $(".child").mousemove(function(e){
            //     console.log(ee.offsetX,e.offsetY)
            // })
            // $(".child").mouseover(function(){
            //     $(this).css("background-color","red");
            // },function(){
            //     $(this).css("background-color","pink");
            // })
            // $(".child").hover(function(){
            //     $(this).css("background-color","red");
            // },function(){
            //     $(this).css("background-color","pink");
            // })
            function stopPropagation(e){
                e.stopPropagation();  //阻止事件冒泡
                e.preventDefault();   //阻止默认行为  reset submit  a[href]
                return false;
            }
                    
                
                
            
        
浙公网安备 33010602011771号