javascript学习(三)——常用方法(1)(8)

来源:未知 责任编辑:责任编辑 发表时间:2013-11-18 20:56 点击:

<html xmlns="http://www.w3.org/1999/xhtml" > 
<head> 
    <title>无标题页</title> 
    <script type="text/javascript"> 
        //弹出隐藏层 
        function ShowDiv(show_div,bg_div){ 
            document.getElementById(show_div).style.display='block'; 
            document.getElementById(bg_div).style.display='block' ; 
            document.getElementById(bg_div).style.width = document.body.scrollWidth+"px";  
            if(document.body.offsetHeight > document.documentElement.clientHeight){ 
                document.getElementById(bg_div).style.height = document.body.offsetHeight+"px"; 
            } 
            else{ 
                document.getElementById(bg_div).style.height = document.documentElement.clientHeight+"px"; 
            } 
        }; 
        //关闭弹出层 
        function CloseDiv(show_div,bg_div) 
        { 
            document.getElementById(show_div).style.display='none'; 
            document.getElementById(bg_div).style.display='none'; 
        }; 
    </script> 
    <style type="text/css"> 
        .pop_div4{margin-bottom:3px;display:none;position:absolute;background:#FFF;top: 35%;left: 35%;width: 30%;border:solid 1px #6e8bde;z-index:1002;} 
        .pop_div4 .title{color:#FFF;cursor:default;height:18px;font-size:14px;font-weight:bold;text-align:left;padding-left:8px;padding-top:4px;padding-bottom:2px;background-color:#6e8bde;} 
        .pop_div4 .content{  clear:both;  margin:4px;  padding:2px;  } 
        .Mask_div2{display: none; position: absolute; background-color: black;z-index:1001;-moz-opacity: 0.8;opacity:.30;filter: alpha(opacity=80); top: 0%; left: 0%; }   
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Gb2312转utf-8编码的方法(vbs+js)
  • 如何使用Ajax技术开发Web应用程序(1)
  • js跳转路径问题
  • JavaScript模仿桌面窗口
  • 用js检测两个线段是否相交
  • 我知道的JavaScript -- 设计模式(桥接)应用之 – 验证器
  • 运用JavaScript构建你的第一个Metro式应用程序(on Windows
  • 我是如何去了解jquery的(六),案例之幻灯片轮换
  • Jquery封装幻灯片效果
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1