1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jQuery ---- イベントの使用例

Last updated at Posted at 2014-02-08

イベントの設定

次のように記述します

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>

jq例001.png

↓もちろんclick以外にも、mouseoverやmouseoutなどJavaScriptで使えるイベントはみんな使えます。


<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>

jq例002.png

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?