<body>
<form name="dataEventDisplay">
<table border="2" bordercolor="white" cellpadding="0" cellspacing="0">
<tr>
<td><textarea cols="60" rows="10" name="event">没有消息 </textarea></td>
</tr>
</table>
</form>
</body>
上面为添加文本域的方法;
下面为在文本域显示内容:
<script type="text/javascript">
document.dataEventDisplay.event.value = “要显示的内容”;
</script>