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>
↓もちろん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>
Author And Source
この問題について(jQuery ---- イベントの使用例), 我々は、より多くの情報をここで見つけました https://qiita.com/tsukishimaao/items/819cda201a462d0b5d7e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .