수

event.preventDefault ()

· 2017-09-10 (일) 00:09:09 · 2482

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>

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

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
jQuery 17-10-11 조회 2,457
jQuery 17-10-11 조회 1,910
jQuery 17-10-11 조회 2,030
jQuery 17-09-29 조회 2,250
jQuery 17-09-29 조회 2,498
jQuery 17-09-29 조회 2,036
jQuery 17-09-26 조회 1,971
jQuery 17-09-26 조회 2,045
jQuery
[jQuery]
17-09-26 조회 1,815
jQuery 17-09-22 조회 2,064
jQuery 17-09-22 조회 2,119
jQuery 17-09-22 조회 2,101
jQuery 17-09-21 조회 2,286
jQuery 17-09-21 조회 2,235
jQuery 17-09-21 조회 2,103
jQuery 17-09-19 조회 2,160
jQuery 17-09-19 조회 1,909
jQuery
[jQuery]
17-09-19 조회 1,900
jQuery
[jQuery]
17-09-18 조회 2,080
jQuery 17-09-18 조회 1,990
jQuery 17-09-18 조회 1,682
jQuery 17-09-14 조회 2,097
jQuery 17-09-14 조회 1,792
jQuery 17-09-14 조회 2,040
jQuery 17-09-11 조회 2,431
jQuery 17-09-11 조회 2,468
jQuery 17-09-11 조회 1,981
jQuery 17-09-10 조회 2,049
jQuery 17-09-10 조회 2,483
jQuery
[jQuery]
17-09-10 조회 1,939