Hello World 출력 |
<소스화면> <결과화면> |
HelloWord.htm |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <head> <title>Hello World</title> <style type="text/css"> .bg { background-color:Yellow;} .sil { background-color:Silver;} </style> <script src="jsp/jquery-1[1].3.2-vsdoc2.js" <script type="text/jscript"> $(document).ready(function () { $('#hw').addClass("bg"); $('#hw').click(function () { alert('안녕'); }); </script> </head> <body> <div style="background-color:Yellow ;" onclick="alert('안녕') "> 안녕하세요 JQUERY1 예제 입니다 </div> <div class="bg" > 안녕하세요.. JQUER2 예제 입니다 </div> <div id="hw";"> 안녕하세요 JQUERY3 예제 입니다 </div> </body> </html> |
'.Net Project > Jquery 1.3.2' 카테고리의 다른 글
06장 JQuery특정 단어 검색 (Contains) (0) | 2009.11.05 |
---|---|
05장 JQuery 짝수테이블 배경색 변경 (EvenOdd) (0) | 2009.11.05 |
04장 JQuery 정규표현식 셀렉터(RegSelector) (0) | 2009.11.05 |
03장 JQuery Selector 활용 (0) | 2009.11.05 |
01장 JQuery 이해 (0) | 2009.11.05 |