我在网站上嵌入了下面的代码(html、javascript、css),尽管它在任何版本(最后一个)的 firefox 和 chrome 上都可以正常工作,但在 internet explorer 9 或更早版本上都不能正常工作.
不能正常工作是指链接不工作(无导航)。抱歉,我不够清楚......我的代码有什么错误或遗漏吗?我可以添加一些东西吗?我试图在
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
但什么也没发生。
我的代码是:
<!DOCTYPE html>
<html>
<head>
<style>
body{font-family:verdana; font-size:25px}
table{font-size:80%;background:181919}
a{color:white;text-decoration:none;font:bold }
a:hover{color:#009ED8}
td.menu{background:#181919}
table.menu
{
font-size:100%;
position:absolute;
visibility:hidden;
}
</style>
<script>
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden";
}
</script>
</head>
<body>
<table width="100%" border = 0>
<tr bgcolor="181919" >
<td onmouseover="showmenu('home')" onmouseout="hidemenu('home')" width="15%">
<a href="http://www.test.com" target=_top>Αρχική</a><br>
</td>
<td onmouseover="showmenu('company')" onmouseout="hidemenu('company')" width="25%">
<a href=" http://www.test.com" target=_top>Η εταιρία μας</a><br>
</td>
<td onmouseover="showmenu('properties')" onmouseout="hidemenu('properties')" width="20%">
<a href=" http://www.test.com" target=_top>Ακίνητα</a><br>
<table class="menu" id="properties" width="120">
<tr><td><br></td></tr>
<tr><td class="menu"><a href=" http://www.test.com" target=_top>Πώληση</a></td></tr>
<tr><td class="menu"><a href=" http://www.test.com" target=_top>Ενοικίαση</a></td></tr>
<tr><td class="menu"><a href=" http://www.test.com" target=_top>Μισθωμένα</a></td></tr>
<tr><td class="menu"><a href="http://www.test.com" target=_top>Υπό κατασκευή</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('contact')" onmouseout="hidemenu('contact')" width="20%">
<a href=" http://www.test.com" target=_top>Επικοινωνία</a><br>
<table class="menu" id="contact" width="120">
</table>
</td>
<td onmouseover="showmenu('press')" onmouseout="hidemenu('press')" width="20%">
<a href=" http://www.test.com" target=_top>Γραφείο Τύπου</a><br>
<table class="menu" id="press" width="120">
<tr><td><br></td></tr>
<tr><td class="menu"><a href="http://www.test.com" target=_top>Ανακοινώσεις</a></td></tr>
<tr><td class="menu"><a href=" http://www.test.com" target=_top>Οικονομικά Στοιχεία</a></td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>