detach
English [dˈtætʃ]
vt. 분리, 분리, 할당;
jquery 분리() 메서드 통사론
기능: detach() 메서드는 모든 텍스트 및 하위 노드를 포함하여 선택한 요소를 제거합니다. 이 메서드는 나중에 다시 사용할 수 있도록 jQuery 개체에 일치하는 요소를 유지합니다. detach()는 모든 바인딩된 이벤트와 첨부된 데이터를 유지하며, 이는 Remove()와 다릅니다.
구문: $(selector).detach()
jquery 분리() 메서드 예
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("p").detach(); }); }); </script> </head> <body> <p>This is a paragraph.</p> <button>删除 p 元素</button> </body> </html>
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요