반응형
1.
$('#div1').clone().wrapAll('<div/>').parent().html();
2.
jQuery.fn.outerHTML = function(s) {
return s
? this.before(s).remove()
: jQuery("<p>").append(this.eq(0).clone()).html();
};
728x90
반응형
'웹 개발' 카테고리의 다른 글
spring bean 등록정보 조회 유틸리티 클래스 (0) | 2019.07.24 |
---|---|
JSP MultipartRequest upload (0) | 2019.07.24 |
연산자 우선순위 (0) | 2019.07.24 |
++i 와 i = i + 1 의 비교 (0) | 2019.07.24 |
[jquery] attr과 prop 차이 (attr vs prop) (0) | 2019.07.24 |