贴code  才好帮你看下  图也看不到

解决方案 »

  1.   

    谢楼上,代码如下:    function createRows(rowCount){
            var i, j, row, cell;
            for(i=0; i<rowCount; i++){
                row = _tblBody.insertRow();            
                for(j=0; j<_visibleFields.length; j++){
                    cell = row.insertCell();
                    cell.noWrap = true;
                    cell.overflow = "hidden";
                    cell.className = _tdClassName;
                }
                attachRowEvents(row);            
            }
        }图片来自百度空间,请pm email传给您
      

  2.   

    cell.className = _tdClassName应该是这个样式的问题.
      

  3.   

    谢谢楼上,样式没什么特别设置:.ManagementGridTd
    {
        cursor:default;
        height:12px;
        border:1px gray solid;
    }