思路:获取行对象→获取列对象→使用innerHTML为单元格添加超链接内容,实例演示如下:
1、HTML结构
1 | 1 | 2 | 3 |
2 | 4 | 5 | 6 |
3 | 7 | 8 | 9 |
4 | 1 | 2 | 3 |
2、javascript代码
function fun(){
row = document.getElementById("row").value - 1;
col = document.getElementById("col").value - 1;
tr = document.getElementById("test").getElementsByTagName("tr");
td = tr[row].getElementsByTagName("td")[col];
td.innerHTML = "超链接";
}
3、效果演示
var tr = document.createElement('tr');
var td = document.createElement('td');
var a = document.createElement('a');
a.href="";
a.onclick=function(){
};
td.appendChild(a);
tr.appendChild(td);
你用的什么添加的?
innerHtml吗,比如:innerHtml('link');