초학 jquery

1。jquery 다운로드
http://docs.jquery.com/Downloading_jQuery
2。간단히 사용 하 다
  <html>
<head>
<script type="text/javascript" src="path/to/jquery.js"></script>
<script type="text/javascript">

$(document).ready(function(){

$("a").click(function(){
alert("Thanks for visiting!");
}); });
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>

$("a") jQuery selector, , a 。$ jQuery" " ,
$() jQuery 。
3。jQuery css selector 여기 있 습 니 다.http://docs.jquery.com/DOM/Traversing/Selectors#CSS

좋은 웹페이지 즐겨찾기