문서 객체 복제
 
clone() : 특정 문서 객체  복제
$(selector).clone()
$(selector).clone(Boolean dataAndEvents)
$(selector).clone(Boolean dataAndEvents, Boolean deepDataAndEvents)

<html>
<head>
<script src="/ajaxjquery/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("div").append($("h1").clone());
});
</script>
<body>  
<div></div>
    <h1>aaaaaaaaaa</h1>
</body>
</html>


'IT노트 > jquery' 카테고리의 다른 글

[펌]jQuery선택자  (0) 2015.04.12
jquery 테이블 만들기  (0) 2015.03.01
jQuery replace  (0) 2015.02.25
[jQuery Cookbook - 1,2장]  (0) 2015.02.19
Jquery file val 클리어  (0) 2015.02.19
Posted by wychoi
,