0
         <table>
         <tr>
         <td>
         <div id="dropdownmenu">
         <a href="#">Red</a>
         <a href="#">Orange</a>   
         </div>
         <script type="text/javascript">
         cssdropdown.startchrome("chromemenu")
         </script></td>
         </tr>
         <tr style="background-color:#FFFFFF; vertical-align:top;">
         <td>  
         <object height="251" width="504">
         <param value="Flash.swf" name="movie">
         <param value="Transparent" name="wmode">
         <embed width="504" height="251" src="Flash.swf"/> //here flash is hiding drop 
         </object>
         </td>
         </tr>
         </table>

ここで、flash.swfはドロップダウンメニューを非表示にしています。フラッシュの外側にドロップダウンが必要ですが、フラッシュの内側に表示されます。

4

1 に答える 1

0

wmode埋め込みタグにパラメータがありません:

<embed width="504" height="251" src="Flash.swf" wmode="transparent" />

<paramベースはwmodeInternetExplorerのみを対象としています

于 2013-01-29T11:02:42.163 に答える