博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery + Css 模式对话框
阅读量:5792 次
发布时间:2019-06-18

本文共 3495 字,大约阅读时间需要 11 分钟。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">

<html>
 <head>
  <title>模式对话框示例</title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
     <script src="jquery-1.5.2.min.js" type="text/javascript"></script>
     <script type="text/javascript" language="javascript">
     $(function () {
         $(".selTree").live("click",function () { $(".empTree,.bgDiv").show(); });
         $(".close").live("click",function () {
            $(this).parents(".shq,.box").hide();
            $(".bgDiv").hide();
            });
          
 
     });
     </script>
     <style type="text/css" >
  .bgDiv{position:absolute;top:0px; background:url(../images/divBg2.png); display:none;width:100%;height:100%}
  .shq{ width:507px; height:488px; border:5px solid #219ACF; position:absolute;margin-left:-253px;left:50%;top:60px; background:#EBF3F6; display:none}
  .boxHead{ width:100%; height:27px; background:url(../images/box_bg.jpg) repeat-x;}
  .boxHead div{margin-left:10px}
  .shTitle{margin-left:10px; height:25px; line-height:25px; float:left}
  .shClose{width:20px; cursor:pointer; float:right; color:#94938E; font-weight:bold;font-size:16px;height:25px; line-height:25px;}
    </style>
 </head>
 
 <body>
    <input type="button" id="button" value="模式对话框"  class="selTree" />

    <!--选择查看 -->

    <div class="bgDiv"></div>
        <div class="shq empTree" name="shq" style="height:425px; width:425px; display:none">
        <div class="boxHead">
          <div class="shTitle">选择查看</div>
          <div class="shClose close">×</div>
        </div>
              asdfasdfasdf
              <input type="submit" name="button2" id="button2" value="确定" class="btn close"/>
             <input type="submit" name="button3" id="button3" value="取消" class="btn close"/>
    </div>
 </body>
</html>

 

 

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">

<html>
 <head>
  <title>模式对话框示例</title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
     <script src="jquery-1.5.2.min.js" type="text/javascript"></script>
     <script type="text/javascript" language="javascript">
     $(function () {
         $(".selTree").live("click",function () { $(".bgDiv,.empTree").show(); });
         $(".close").live("click",function () {
            $(this).parents(".shq,.box").hide();
            $(".bgDiv").hide();
            });
            $(".bgDiv").height($(document).height());
            $(".close").live("click",function () {
               $(this).parents(".shq,.box").hide();
               $(".bgDiv").hide();
             });

     });

     </script>
     <style type="text/css" >
  .bgDiv{position:absolute;top:0px; background:url(../images/divBg2.png); display:none;width:100%;height:100%}
  .shq{ width:507px; height:488px; border:5px solid #219ACF; position:absolute;margin-left:-253px;left:50%;top:60px; background:#EBF3F6; display:none}
  .boxHead{ width:100%; height:27px; background:url(../images/box_bg.jpg) repeat-x;}
  .boxHead div{margin-left:10px}
  .shTitle{margin-left:10px; height:25px; line-height:25px; float:left}
  .shClose{width:20px; cursor:pointer; float:right; color:#94938E; font-weight:bold;font-size:16px;height:25px; line-height:25px;}
    </style>
 </head>
 
 <body>
    <input type="button" id="button" value="模式对话框"  class="selTree" />

    <!--选择查看 -->

    <div class="bgDiv"></div>
        <div class="shq empTree" name="shq" style="height:425px; width:425px; display:none">
        <div class="boxHead">
          <div class="shTitle">选择查看</div>
          <div class="shClose close">×</div>
        </div>
              asdfasdfasdf
              <input type="submit" name="button2" id="button2" value="确定" class="btn close"/>
             <input type="submit" name="button3" id="button3" value="取消" class="btn close"/>
    </div>
 </body>
</html>

转载地址:http://lpwfx.baihongyu.com/

你可能感兴趣的文章
HTML基础(一)
查看>>
boost.circular_buffer简介
查看>>
Database Appliance并非Mini版的Exadata-还原真实的Oracle Unbreakable Database Appliance
查看>>
网页图片缩放(js)
查看>>
Perl开发的几个小注意事项
查看>>
实现hive proxy1-hive认证实现
查看>>
设计和使用维护计划
查看>>
Shiro 基础教程
查看>>
div的作用
查看>>
Identifier 'Logic.DomainObjectBase._isNew' is not CLS-compliant
查看>>
php操作oracle的方法类集全
查看>>
03数据结构——线性表(头节点和头指针)
查看>>
JavaScript-函数
查看>>
Response的使用入门
查看>>
mysql----------mysql的一些常用命令
查看>>
推荐系统漫谈
查看>>
Netty之有效规避内存泄漏
查看>>
新建Maven项目出错
查看>>
UVa 10714 - Ants
查看>>
目录和文件管理
查看>>