我正在尝试直接动态地访问 tr 。我认为 tr 被选中,但是当我应用 deleteCell 方法时,它说该对象没有这样的方法!部分代码:
set: function(f, res){
var row = $('tr#moRow'+f), arr = res.split('|'), cell,
links = new Array(
'forums.php?f='+f+'&option=mo',
'forums.php?f='+f+'&option=ho',
'forums.php?f='+f+'&option=rmo',
'forums.php?f='+f+'&option=rho',
'pm.php?mail=new&f=-'+f
);
if(row){
alert(row);// gives [object object]
row.deleteCell(1);
for(var x = 0; x < arr.length; x++){
cell = row.insertCell(x + 1);
cell.className = (arr[x] > 0 ? 'asFirstB' : 'asNormalB')+' asCenter';
cell.innerHTML = (arr[x] > 0) ? "<a href=\""+links[x]+"\"><b>"+arr[x]+"</b></a>" : "0";
有任何想法吗 ?