var str2DOMElement = function( html) {
var Frame = 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(frame);
return el;
}
var markup = '
';
var el = str2DOMElement(マークアップ);