日期:2014-05-16 浏览次数:20343 次
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>this is a test web</title>
</head>
<body>
<h4 align="center">事件记录</h4>
<table id="table1" width="600" border="1px" bordercolor="#000000" cellspacing="0px" style="border-collapse:collapse" align="center">
<tr>
<th>时间</th>
<th>设备</th>
<th>事项</th>
</tr>
<tr>
<td>2013-09-09</td>
<td>rtu</td>
<td>reboot</td>
</tr>
</table>
<!-- This is a comment start -->
<script type="text/javascript">
<!--
function setTd(){
document.getElementById('table1').rows(1).cells(1).innerHTML="2013-08-08";
}
//-->
</script>
<!-- This is a comment end -->
<input type="button" value="读取" onclick="setTd()">
</body>
</html>