jquery를 사용하여 요소 유형을 변경하는 방법 다음 코드를 가지고 있습니다. bryant keil bio 어떻게 교체해야 합니까?b에 태그를 달다.h1태그를 지정하지만 다른 모든 속성과 정보를 유지하시겠습니까?jQuery를 사용하여 수행할 수 있는 한 가지 방법은 다음과 같습니다. var attrs = { }; $.each($("b")[0].attributes, function(idx, attr) { attrs[attr.nodeName] = attr.nodeValue; }); $("b").replaceWith(function () { return $("", attrs).append($(this).contents()); }); 예: http://jsfiddle.net/yapHk/ 업데이트, 플러그인: ..