当前位置:编程学习 > 网站相关 >>

js 兼容多浏览器的显示隐藏层

js 兼容多浏览器的显示隐藏层
<html xmlns="http://www.zhaoxi.net/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>js 兼容多浏览器的显示隐藏层</title>

<script language="javascript教程">
  function showCity_div()
        {
            document.getElementById("City_div").style.display = "block";
        }
  
        function hideCity_div()
        {
            document.getElementById("City_div").style.display = "none";
        }
</script>

 

<style type="text/css教程">
 #City_div{
  height:200px;
  border:1px solid #0099CC;
  width:300px;
 }
</style>


</head>

<body>

<a href="#" onMouseOver="showCity_div()">显示层</a>
<a href="#" onMouseOver="hideCity_div()">隐藏层</a>
<div id="City_div">
 js 兼容多浏览的显示隐藏层,本文章原创www.zhaoxi.net于转载注明出处
</div>


</body>
</html>

补充:网页制作,设计基础
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,