코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>jQuery Element Remove</title> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <style> div { border: 2px solid green; margin: 10px; } #container { border: 2px solid orange; } </style> <script> $(function() { $("button").on("click", function() { $("span").unwrap(); // 모든 <span>요소의 부모 요소를 삭제함. }); }); </script> </head> <body> <h1>.unwrap() 메소드</h1> <div id="container"> <div><span>첫 번째</span> 컨텐츠에요!</div> <div><span>두 번째</span> 컨텐츠에요!</div> <div><span>세 번째</span> 컨텐츠에요!</div> </div> <br> <button>부모 요소 삭제</button> </body> </html>