2013年1月11日金曜日

[jQuery]導入

HTMLファイルのhead領域に以下を追加する
<script type="text/javascript src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
動作確認
<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>sample00</title>
 <script type="text/javascript">
 $(function() {
 $("li").css("color", "red");
 })
 </script>
 </head>
 <body>
 <ul>
 <li>Test Test Test</li>
 <li>テスト テスト テスト</li>
 </ul>
 </body>
</html>
結果
sample00 (fc2 にあるテストファイルへ飛びます

0 件のコメント:

コメントを投稿