2011-01-19 81 views
0

我使用html & js創建了一個網頁(顯示錶中的詳細信息)。它適用於Firefox但不在IE中。瀏覽器兼容性錯誤

function frontEnd() 
{ 
try{ 
th1 = document.getElementById('th1'); 
th1.firstChild.nodeValue = "Technology"; 

th2 = document.getElementById('th2'); 
th2.firstChild.nodeValue = "Level of knowledge"; 

t1 = document.getElementById('t1'); 
t1.firstChild.nodeValue = "HTML"; 

tl1 = document.getElementById('tl1'); 
tl1.firstChild.nodeValue = "5"; 

document.getElementById('MyTab').style.visibility="visible"; 
} 
catch(e) 
{ 
alert(e); 
} 
    } 

th1是表標題的標識,t1,tl1是數據標識。其實我試圖在用戶點擊按鈕時在表格中顯示靜態值。它在Firefox中成功運行,而不是在IE中。當使用IE瀏覽器點擊按鈕它反映錯誤「[對象錯誤]」 請告訴我如何使相同的代碼在IE中工作。

感謝, 納文

回答