HTML | 预览 |
---|---|
test
|
源码:
<!DOCTYPE html>
<html>
<head>
<title>超简易在线HTML编辑</title>
</head>
<body>
<table style="100%; border-collapse:collapse;" border="1">
<tr>
<th>HTML</th>
<th>预览</th>
</tr>
<tr>
<td style="40%; vertical-align:top;">
<textarea wrap="off" style="98%; height:600px; color:blue; overflow:scroll; border:solid 1px red; line-height:23px; font-size:14px; font-family:Consolas;"
onkeyup="document.getElementById('divHtml').innerHTML = this.value;"></textarea>
</td>
<td style="60%; vertical-align:top;">
<div id="divHtml"></div>
</td>
</tr>
</table>
</body>
</html>