我有以下网站:
http://www.pachamber.org/www/advocacy/index.php
当用户点击底部的“General Commerce”href 标签时,它应该会滑出隐藏的内容。除此标签外,所有其他标签都可以正常工作。
该函数仅在 IE 中出现意外行为。在 Chrome 和 FF 中看起来不错。在调试函数时,似乎没有height
从 div 中抓取属性:
<div id="general" style="display: none; height: 30px; overflow: hidden">
该height
属性在这一行显示为 1px:
this.height = parseInt(this.obj.style.height);
这是 HTML 和函数调用的片段:
<table width="100%" border="0" cellspacing="0" cellpadding="6">
<tr>
<td colspan="2" style="width: 100%;">
<div class="subheading2" style="border-bottom: thin solid gray; cursor: pointer; color: #000099" onClick="doSlideOut('general');"><a name="general"></a>General Commerce</div>
</td>
</tr>
</table>
<div id="general" style="display: none; height: 30px; overflow: hidden">
<table width="100%" border="0" cellspacing="0" cellpadding="6">
<tr>
<td width="53%">
• <a href="gc/testimony/index.php" >Testimony & Comments</a>
</td>
<td width="47%"> </td>
</tr>
</table>
</div>
有什么我想念的想法吗?
谢谢。