jQueryの基本形は次のようになる。
$("Selector").Event
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>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>
上のコードでは最初の
$(function() {}
は
$(document).ready(function() {}
の省略形でHTMLが読み込まれてreadyになったタイミングで実行される。
$("li").css("color", "red");
は<li>要素のCSSのcolorプロパティを変更している
0 件のコメント:
コメントを投稿