简体   繁体   中英

IE7 problems with displaying text in TD

I can not figure out why the text inside the TD is not displayed in IE7. I am frustrated to the core cuz it works in FF! All I am trying to do is dynamically build a table onload... Any help will be greatly appreciated. The complete script is at pastebin

use the insertRow(-1) to add a row instead, and insertCell(-1) to add a column

updated code: http://pastebin.com/mTym410P

User insertRow and insertCell to add Rows and Cells
Ex:

var row = table.insertRow();
row.id= rowid;

var headerCell = row.insertCell();
headerCell.colSpan = colspan;
headerCell.className = "rightAligned";
headerCell.innerHTML = "Header Text";

IE needs a TBODY. Just add it as the first child of your table and then append your rows and cells to that.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM