Wrap.htm |
<!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[1].3.2-vsdoc2.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { //[1] <h3> ...</h3>을 태그로 묶자 <u> </u> $('h3').wrap("<u></u>"); //[2] 모든 태그를 <li> 묶자 $('<ol type="1" id="Community"></ol>').insertBefore('a:eq(0)'); //[b] 모든 링크로 감싸고 태그 추가 $('a').each(function () { $(this).appendTo('#community').wrap('<li></li>'); }); }); </script> </head> <body> <h3>jQuery UI provides abstractions</h3> <a href="http://www.asp.net /">ASP.NET</a> <a href="http://www.silverlight.net /">Silverlight</a> <a href="http://www.windowsclient.net /">WPF</a> <a href="http://www.dotnetkorea.com /">DotNetKorea</a> </body> </html> |
'.Net Project > Jquery 1.3.2' 카테고리의 다른 글
43장 JQueryManipulation 검색된 요소 변경하기 (ReplaceWith) (0) | 2009.11.11 |
---|---|
42장 JQueryManipulation 검색된 요소 복사 (Clone) (0) | 2009.11.11 |
40장 JQueryManipulation 특정 용어 번호 추가 (Append) (0) | 2009.11.11 |
39장 JQueryManipulation 앞 뒤 요소 추가 (Insert After) (0) | 2009.11.11 |
38장 JQueryManipulation Append메서드 (Append) (0) | 2009.11.11 |