2013年1月11日金曜日

[jQuery]イベント

ボタン押下
Example: ソースコード
<html>
<head>
 <meta content="text/html; charset=UTF-8" http-equiv="content-type">
 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
 <title>sample01</title>
 <script type="text/javascript">
$(function() {
 $("button").click(function() {
 $("li").css("color", "red");
 })
})
 </script>
</head>
<body>
 <ul>
 <li>Test Test Test</li>
 <li>テスト テスト テスト</li>
 </ul>
 <button type="button">変更</button><br>
</body>
</html>
結果
sample01 (fc2 にあるテストページに飛びます)
$("button").click(function() {}
はbutton要素がクリックされたイベント時に実行される。

0 件のコメント:

コメントを投稿