动态改变表格单无格内容

类别:软件工程 点击:0 评论:0 推荐:
<html>
<head>
<title>test</title>
<script language="javascript">
function addText()
{
var strText="<font color=red>改变后的表格内容</font>";
document.all("td1").insertAdjacentHTML("beforeEnd",strText);
//document.all("td1").innerHTML=strText; //
//document.all("td1").innerText=strText;
//document.all("td1").insertAdjacentText("beforeEnd",strText);
}
</script>
</head>
<body>
<input type="button" onclick=addText() value="改变表格内容" />
<input type="button" onclick="td1.innerHTML='';" value="清除">
<div id="id1">
</div>
<table id="ta1">
<tr><td id="td1">表格内容</td></tr>
</table>
</body>
</html>

本文地址:http://com.8s8s.com/it/it36288.htm