깜빡임 없이 웹페이지를 업데이트하는 것은 큰 문제입니다.
로드된 html 문자열(ajax를 통해 얻음), 여전히 코드를 실행해야 한다면 문제가 있는 것입니다.
표시되지 않는 iframe을 사용하여 이 개체를 호스팅하고 싶습니다. 이것은 약간 더러운 일처럼 느껴집니다.
var str2DOMElement = function( html) {
var 프레임 = document.createElement('iframe');
frame.style.display = 'none';
document.body.appendChild(frame);
frame.contentDocument.open();
frame.contentDocument.write(html);
frame.contentDocument.close();
var el =frame.contentDocument.body.firstChild;
문서. body.removeChild( 프레임);
return el;
}
var markup = '
';
var el = str2DOMElement(마크업);