我有导航菜单 html,我希望能够在它下面的对象顶部打开。外汇。小程序或嵌入的 pdf 文件。但是,将 div 浮动在嵌入元素或小程序上并不适用于所有浏览器(需要 safari、ie8+、firefox、chrome)。不起作用我的意思是它没有出现在顶部。
查看各种帖子,我得出以下代码:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function showHideElement(element){
var elem = document.getElementById(element);
if (elem.style.display=="none"){
elem.style.display="block"
}
else{
elem.style.display="none"
}
}
</script>
<style>
div:hover {
background-color:red !important;
}
</style>
</head>
<body>
<div style="position:absolute;height:100px;width:100px;background-color:Yellow;" onclick="showHideElement('Iframe1');">click me to toggle elem (ie)</div>
<div style="position:absolute;z-index:100;background-color:Green;height:100px;width:100px;margin-left:200px;"></div>
<div style="position:absolute;z-index:20;margin-left:200px;">
<iframe visible="true" id="Iframe1" height="100" width="100" runat="server" frameborder="0" scrolling="auto" >
</iframe>
</div>
<div style="position:absolute;z-index:10;margin-left:100px;">
<iframe visible="true" style="z-index:1" id="ipdf" src="http://www.irs.gov/pub/irs-pdf/fw4.pdf" height="1000" width="1000" runat="server" frameborder="0" scrolling="auto" >
</iframe>
</div>
</body>
</html>
这适用于除 Safari 之外的所有浏览器,是否也可以在 Safari 上运行(我使用的是 5.1.4 Windows)?
我在以前的帖子中没有看到 Safari 的提及...
谢谢