Internet Explorer中的对象标记,里面有PDF

时间:2013-11-18 10:46:59

标签: html internet-explorer object pdf z-index

我有这个简单的HTML:

<!DOCTYPE html>
<html>
<head>
</head>
<body>
    <div style="position:absolute;">
        <div style="position:absolute; display:block; z-index:999; left:450px;">stuff</div>
    </div>
    <object data='C:/mypdf.pdf' type="application/pdf" width="500px" heigth="500px" style="z-index:1;">     
        <p>stuff</p>
        <p>stuff</p>
    </object> 

</body>
</html>

在Internet Explorer中,我不能在pdf前面制作div,在其他浏览器中效果很好,

任何Sugestions?

[编辑]

这是JsFiddle

感谢

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
<!DOCTYPE html>
<html>

<head>
</head>

<body>
  <div style="position:absolute;">
    <div style="position:absolute; display:block; z-index:999; left:450px;">stuff</div>
  </div>
  <object type="application/pdf" width="500px" heigth="500px" style="z-index:1;">
    <param name="src" value="http://www.who.int/medicines/publications/essentialmedicines/18th_EML_Final_web_8Jul13.pdf" />
  </object>

</body>

</html>
&#13;
&#13;
&#13;