<html>
<body>
<script>
function runCode(obj) {
obj = typeof obj == "string" ? document.getElementById(obj) : obj;
var winname = window.open('', "_blank", '');
winname.document.open('text/html', 'replace');
winname.document.write(obj.innerHTML);
winname.document.close();
}
</script>
<div id='abc'><font color="#f00" >123456</font></div>
<button onclick="runCode('abc')">preview</button>
</body>
</html>
本站僅提供存儲服務(wù),所有內容均由用戶(hù)發(fā)布,如發(fā)現有害或侵權內容,請
點(diǎn)擊舉報。