答案:现在终于找到相关资料,做完了例子这个发现MSDN中也有一个类似的例子,呵呵!!
<script language="javascript">
function changeCell(r,c){
var content=prompt("清输入内容:");
kk.rows(r).cells(c).innerHTML=content;
}
</script>
<body>
<table id=kk width=100% cellspacing=1 cellpadding=1 border=1>
<tr><td> </td><td> </td><td> </td><td> </td></tr>
<tr><td> </td><td> </td><td> </td><td> </td></tr>
<tr><td> </td><td> </td><td> </td><td> </td></tr>
<tr><td> </td><td> </td><td> </td><td> </td></tr>
</table>
<input type="text" id=row> <input type="text" id=col><br>
<input type="button" value="changeCell" onclick=changeCell(parseInt(row.value),parseInt(col.value))>
</body>
解释:
rows和cells在Table中分别代表着行和列的集合,在TABLE中的范围限于THEAD, TBODY, TFOOT。
使用方法:obj.rows(index)
obj.cells(index)
其中index是可选的,可以选择一个整数索引也可以选择一个字符串作为索引。
整数索引是基于0开始的,也就是说基和中的第一个元素的下标是0。
字符串索引必须是一个有效的至少存在于页面中的一个具有标示的元素名称。
我不知道翻译的是否正确,下面附上MSDN中的原文:
Optional. An integer or a string specifying the index value of the element to retrieve. Integer indexes are zero-based, meaning the first element in the collection has index 0. A string index is valid only if the string is an identifier of at least one element in the document.
上一个:俺的小作品:根据下拉列表动态在列表框中显示,并实现2个列表框互斥选择
下一个:抛石头引玉:自制的Tab多标签导航栏。