2

I am having an IE z-index issue. Basically, I'm embedding a pdf using the tag, but in IE, our favourite of favourite browsers it always appears above the drop down menu.

I have the same problem when using .

I've tried the solutions offered online, but they haven't worked.

The problem is at this address: http://www.berkeley.ac.th/calendar/2013-2014.php

This is my code:

<object data="<?php echo root; ?>media/3.pdf" type="application/pdf" width="957" height="1080">
     <param name="wmode" value="transparent">
     Our Calendar : <a href="<?php echo root; ?>media/3.pdf">2012-2013 Calendar</a>
 </object>

Thanks


make some change to css :

.menu {
z-index: 9999;
width: 364px;
margin-left: auto;
margin-right: auto;
}
4

3 に答える 3

0

基本的に、問題全体を回避するために、PDF を使用せずに画像に変換することにしました。これが最善の策に思えました。

于 2013-05-19T18:51:29.567 に答える
0

このように wmode transparent を追加してみてください

<script> $(document).ready(function (){ $("object").each(function(){ var url = $(this).attr("src") $(this).attr("src",url+"?wmode=transparent") }); });
</script>

于 2013-05-20T15:24:58.237 に答える