|
ReplaceWith |
<!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> <style type="text/css"> button { display:block; margin:3px; color:Red; width:200px;} div { color:Red; border:2px solid blue ; </style> <script src="../../jquery-1[1].3.2-vsdoc2.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { //모든 버튼 요소 클릭시 //나 자신을 태그로 변경하자 <dib>변경시 완전 제거 $(this).replaceWith("<div>" + $(this).text() + "</div>"); }); }); </script> </head> <body> <h3>jQuery UI provides abstractions</h3> <button>First</button> <button>Second</button> <button>Third</button> </body> </html> |
'.Net Project > Jquery 1.3.2' 카테고리의 다른 글
45장 JQueryCSS 검색된 요소 구하기 (WidthHeight) (0) | 2009.11.11 |
---|---|
44장 JQueryManipulation 검색된 요소 완전제거 (Remove) (0) | 2009.11.11 |
42장 JQueryManipulation 검색된 요소 복사 (Clone) (0) | 2009.11.11 |
41장 JQueryManipulation 검색 요소 특정 태그로 감싸기 (Wrap) (0) | 2009.11.11 |
40장 JQueryManipulation 특정 용어 번호 추가 (Append) (0) | 2009.11.11 |