class_01: 기본 선택기 |zend 실험실 jquery 시리즈 강좌

class_01: 기본 선택기 |zend 실험실 jquery 시리즈 강좌 jquery는 강력한 자바스크립트 프레임워크입니다. zend 실험실는 부정기적으로 여러분에게 jquery에 관한 시리즈 강좌를 쓰기로 결정했습니다. 입문부터 정통까지 모든 것은 조작에서 출발하여 모든 원본을 휴대하여 여러분의 학습을 편리하게 합니다.zend실험실당신과 함께 진보하기를 기대합니다.

  
  
  
  
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  3. <html xmlns="http://www.w3.org/1999/xhtml"> 
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>class_01: |zend jquery </title> 
  7. <script type="text/javascript" src="lib/jquery-1.4.min.js"></script> 
  8. <script type='text/javascript'> 
  9. /** 
  10.  *  jquery , . dom , 
  11.  *  .remove() , , ; 
  12.  */ 
  13. /** 
  14.  *  jquery , , css , 。 
  15.  *  dom, 。  
  16.  *  red css dom, red , item  
  17.  *  。 
  18.  */ 
  19.  function delRed(){ 
  20.    $('.red').remove(); 
  21.  } 
  22. /** 
  23.  *  jquery ,id , id id ,  
  24.  *  id="01" dom, ,  
  25.  *  。 
  26.  */ 
  27. function delbyId(){ 
  28.   $('#02').remove(); 
  29. /** 
  30.  *  jquery , , ,  
  31.  * html , html , ul,li,div,body 。 
  32.  *  body,div 。 
  33.  */ 
  34. function delSpan(){ 
  35.   $('span').remove(); 
  36.  
  37. </script> 
  38. <style type="text/css"> 
  39.   body,html{margin:0;padding:10px;height:100%;font-size:12px;line-height:25px;} 
  40.   .item{background:#ffc;width:500px;height:20px;border:1px dashed #800080;margin-top:15px;padding:3px 15px;display:block;} 
  41.   .red{color:red;} 
  42.   .green{color:green;} 
  43.   .blue{color:blue;} 
  44.   .assert{background:#ffc;width:80%;border:1px solid #800080;padding:10px;} 
  45. </style> 
  46. </head> 
  47. <body> 
  48. <div class="assert"><strong> </strong>: , , ,</br> 
  49. , html , <strong>lib</strong> </br> 
  50. :jquery-1.4.min.js 。 ——<a href="http://zendlab.com" target="_blank"> 
  51. zend , </a>。 
  52. </div> 
  53. <div id="01" class="item red" onclick="delRed();"> div   item red  : $('.red').remove();</div> 
  54. <div id="02" class="item green" onclick="delbyId();"> div   item green  :$('#02').remove();</div> 
  55. <div class="item blue"> div   item green</div> 
  56. <div class="item"> div   item</div> 
  57. <div class="item"> div   item</div> 
  58. <div class="item"> div   item</div> 
  59. <div class="item"> div   item</div> 
  60. <span class="item" onclick="delSpan();"> span   item  :$('span').remove();</span> 
  61. </body> 
  62. </html> 

출처:http://zendlab.com

좋은 웹페이지 즐겨찾기