jQuery 시작하기

Jmnote (토론 | 기여)님의 2012년 2월 19일 (일) 23:43 판 (새 문서: {{소문자}} ==example01.php== <source lang=' <html> <head> <script type="text/javascript" src="http://code.jquery.com/ui/1.7.1/jquery-ui.min.js"></script> <script type="text/javasc...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 example01.php

<source lang=' <html> <head> <script type="text/javascript" src="http://code.jquery.com/ui/1.7.1/jquery-ui.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head>

<body>

클릭하면 사라집니다.

</body>

</html>

2 참고자료

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}