次のサイトがあります。
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>
私が見逃しているアイデアはありますか?
ありがとう。