jquery 기본 이벤트

1084 단어 jquery브라우저IE
jquery 거품 금지:
$('#id').bind('click',function(event){
        event.stopPropagation();
 });

 
jquery에서 기본 비헤이비어를 차단합니다(양식 제출).
$('#id').bind('click',function(event){
        event.preventDefault();
});

 
event.target 속성:
   event.target은 촉발 이벤트 요소를 사냥합니다.
$('a").click(function(event){
        alert(event.target.href);//      <a>   href  ;
});
 
  event.pageX/event.페이지Y x/y 좌표 가져오기
페이지에 스크롤 바가 있으면 스크롤 바의 너비나 높이도 추가됩니다.IE 브라우저에서 기본 2px 테두리를 빼야 합니다.
 
$('a').click(function(event){
    alert(event.pageX+","+event.pageY);
});

  event.which 속성:
마우스 이벤트의 왼쪽, 가운데, 오른쪽 단추를 가져옵니다.
 
$(
    function(){
        $('body').mousedown(function(){
            alert(e.which);//1:  ,2:  ,3:  
});
}
);
 
 
 

좋은 웹페이지 즐겨찾기