jQuery--- 이벤트 예제 사용

5776 단어 jQuery

이벤트 설정


설명은 다음과 같습니다.
jQueryオブジェクト.イベント名(function) {
    イベントが起きたときの処理
});
예를 들어 "#btn의 요소를 클릭하면 console.log('clicked')"처리를 실행하는 경우↓

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
</head>
<body>

<button id="btn">ボタン</button>


<script type="text/javascript">

$(function(){
    $('#btn').click(function() {
        console.log('clicked');
    });

});

</script>

</html>

↓ 물론 클릭을 제외하고mouseover와mouseout 등 자바스크립트에서 사용할 수 있는 이벤트는 누구나 사용할 수 있다.

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test</title>
</head>
<body>

<button id="btn">ボタン</button>


<script type="text/javascript">

$(function(){
    $('#btn').mouseover(function() {
        console.log('mouseover');
    });

    $('#btn').mouseout(function() {
        console.log('mouseout');
    });

});

</script>

</html>

좋은 웹페이지 즐겨찾기