답변:
var elm = document.createElement("div");
var jelm = $(elm);//convert to jQuery Element
var htmlElm = jelm[0];//convert to HTML Element
jQuery를 사용하여 요소를 생성하는 것은 어떻습니까? 예 :
$("<div></div>")
페이지에 추가 할 준비가 된 새 div 요소를 만듭니다. 더 짧아 질 수 있습니다
$("<div>")
그런 다음 필요한 명령을 연결하고 이벤트 핸들러를 설정하여 DOM에 추가 할 수 있습니다. 예를 들어
$('<div id="myid">Div Content</div>')
.bind('click', function(e) { /* event handler here */ })
.appendTo('#myOtherDiv');