<!DOCTYPE html> <html> <head> <title>查找表单控件</title> <script type="text/javascript"> function updateCell(){ var row=document.getElementById("row").value; var cell=document.getElementById("cel").value; var t=document.getElementById("mytable"); t.rows[row-1].cells[cell-1].innerHTML=document.getElementById("course").value; } </script> </head> <body> <table id="mytable" border="1"> <caption>海同科技课程</caption> <tr> <td>C语言</td> <td>C++</td> </tr> <tr> <td>LSd</td> <td>ARM</td> </tr> <tr> <td>javaEE</td> <td>Android</td> </tr> </table> <input type="button" value="表格标题" onclick="alert(document.getElementById('mytable').caption.innerHTML);" /> <input type="button" value="第一行、第一格" onclick="alert(document.getElementById('mytable').rows[0].cells[0].innerHTML);" /> <input type="button" value="第二行、第二列" onclick="alert(document.getElementById('mytable').rows[1].cells[1].innerHTML);" /> <input type="button" value="第三行、第二列" onclick="alert(document.getElementById('mytable').rows[2].cells[1].innerHTML);" /><br/> 设置指定单元格的值:第<input type="text" id="row" size="2"/>行, 第<input type="text" in="cel" size="2">列的值为 <input type="text" id="course" size="13"> <input type="button" in="btn_set" value="修改" onclick="updateCell()"/> </body> </html>
1 回答
已采纳
stone310
TA贡献361条经验 获得超191个赞
第<input type="text" in="cel" size="2">列的值为 ,这里的id写成了in..
同样<input type="button" in="btn_set" value="修改" onclick="updateCell()"/>这里的in不知道是不是也写错,这里没获取没关系
添加回答
举报
0/150
提交
取消