이 기사의 예에서는 테이블 열을 추가하고 삭제하는 jQuery 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
먼저 작업 렌더링을 살펴보겠습니다.
완전한 코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="jquery-1.4.2.min.js" type="text/javascript"></script> <script type="text/javascript"><!-- function addCol() { $th = $("<th>增加的列头</th>"); $col = $("<td>增加的列</td>"); $("#tab1>thead>tr").append($th); $("#tab1>tbody>tr").append($col); } function delCol() { //移除最后一列 $("#tab1 tr :last-child").remove(); //移除第一列 //$("#tab1 tr :first-child").remove(); //移除指定的列, 注:这种索引从1开始 //$("#tab1 tr :nth-child(2)").remove(); //移除第一列之外的列 //$("#tab1 tr :not(:nth-child(1))").remove(); } // --></script> </head> <body> <input id="Button1" type="button" onclick="addCol()" value="增加列" /> <input id="Button2" type="button" onclick="delCol()" value="减少列" /> <table id="tab1" border="1" style="width: 200px;"> <thead> <tr> <th> Id</th> <th> Name</th> </tr> </thead> <tbody> <tr> <td> 1</td> <td> 叶子</td> </tr> <tr> <td> 2</td> <td> 王子</td> </tr> </tbody> </table> </body> </html>
더 많은 jQuery 관련 콘텐츠에 관심이 있는 독자는 이 사이트에서 "JQuery 드래그 효과 및 기술 요약", "jQuery 확장 기술 요약"과 같은 특별 주제를 확인할 수 있습니다. , "JQuery 일반 클래식 특수 효과 요약", "jQuery 애니메이션 및 특수 효과 사용 요약", "jquery 선택기 사용 요약" 및 "jQuery 공통 플러그인 및 사용법 요약》
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.