DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js網頁中的(運行代碼)功能實現思路
js網頁中的(運行代碼)功能實現思路
編輯:關於JavaScript     
復制代碼 代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset='utf8' />
<title>網頁中的運行代碼功能</title>
<script type="text/javascript">
function runCode(oCode) {
var win = window.open('', "_blank", '');
win.document.open('text/html', 'replace');
win.opener = null
win.document.write(oCode.value);
win.document.close();
}
</script>
</head>
<body>
<textarea id="code1" rows="10" cols="95">
<!DOCTYPE html>
<html>
<head>
<meta charset='utf8' />
<title>測試文檔</title>
</head>
<body>
測試文檔 - 你可以先修改部分代碼再運行
<script>alert('hello')</script>
</body>
</html>
</textarea>
<br>
<input type="button" value="運行代碼" onclick="runCode(code1)">
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved