event.preventDefault ()

· 8년 전 · 2209

event.preventDefault ()


설명 : 이 메서드가 호출되면 이벤트의 기본 동작이 트리거되지 않습니다.


예를 들어, 클릭 된 앵커는 브라우저를 새 URL로 가져 가지 않습니다. event.isDefaultPrevented()이 메소드가이 이벤트에 의해 트리거 된 이벤트 핸들러에 의해 호출되었는지 판단 하는 데 사용할 수 있습니다 .


예:

클릭의 기본 동작 (탐색)을 취소합니다.


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>event.preventDefault demo</title>

  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>

</head>

<body>

 

<a href="http://jquery.com">default click action is prevented</a>

<div id="log"></div>

 

<script>

$( "a" ).click(function( event ) {

  event.preventDefault();

  $( "<div>" )

    .append( "default " + event.type + " prevented" )

    .appendTo( "#log" );

});

</script>

 

</body>

</html>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 1,834
jQuery 8년 전 조회 1,890
jQuery 8년 전 조회 1,655
jQuery
[jQuery]
8년 전 조회 1,655
jQuery
[jQuery]
8년 전 조회 1,832
jQuery 8년 전 조회 1,745
jQuery 8년 전 조회 1,449
jQuery 8년 전 조회 1,824
jQuery 8년 전 조회 1,534
jQuery 8년 전 조회 1,798
jQuery 8년 전 조회 2,200
jQuery 8년 전 조회 2,166
jQuery 8년 전 조회 1,728
jQuery 8년 전 조회 1,805
jQuery 8년 전 조회 2,210
jQuery
[jQuery]
8년 전 조회 1,701
jQuery
[jQuery]
8년 전 조회 1,614
jQuery 8년 전 조회 2,430
jQuery 8년 전 조회 3,843
PHP 8년 전 조회 5,855
기타 8년 전 조회 2,187
기타 8년 전 조회 2,005
기타 8년 전 조회 2,284
jQuery 8년 전 조회 1,868
jQuery 8년 전 조회 1,579
jQuery 8년 전 조회 2,386
jQuery 8년 전 조회 2,054
jQuery
[jQuery]
8년 전 조회 1,837
jQuery 8년 전 조회 2,077
jQuery
[jQuery]
8년 전 조회 1,496