我想解析html字符串
<!DOCTYPE html><html><head></head><body>....<some tag></some tag>...<script> </script></body></html>
我该怎么做?
代码:
<iframe id="FileFrame" src="about:blank"></iframe>
<script>
var doc = document.getElementById('FileFrame').contentWindow.document;
doc.open();
doc.write('<!DOCTYPE html><html><head></head><body>....<some tag></some tag>...<script></script></body></html>');
doc.close();
</script>
答案 0 :(得分:1)
只需使用jQuery函数即可。
var myHtml = "<html><body><b>Some Text</b></body></html>";
var myDocument = $(myHtml);