jquery 弹出框

jquery弹出框,简洁版本


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>test.html</title>
	
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

<script   src="js/jquery-1.6.js"></script>
<script   src="js/jquery_alert.js"></script>
  </head>
  
  <body>
    This is my HTML page. <br>
    <div class="showbtn">弹出</div>
    <lable class="showbtn">弹出</lable>
    <div class="box" style="display:none">
    <h2>jQuery 学习交流<a href="#" class="close">关闭</a></h2>
    <div class="list">
        <ul>
            <li>我是稀饭</li>
            <li>我是稀饭</li>
            <li>我是稀饭</li>
        </ul>
    </div>
</div>
  </body>
</html>


jquery_alert.js

//如何使用弹出层的js 
//1.必须含有jquery
//2.在body下面有个class 为box的div,为弹出层


//原理见http://www.jquery001.com/jquery-mask-layer.html
$(function () {initalertcss();
    $(".showbtn").click(function () {
        $("#bg").css({
            display: "block", height: $(document).height()
        });
        var $box = $('.box');
        $box.css({
            //设置弹出层距离左边的位置
            left: ($("body").width() - $box.width()) / 2 - 20 + "px",
            //设置弹出层距离上面的位置
            top: ($(window).height() - $box.height()) / 2 + $(window).scrollTop() + "px",
            display: "block"
        });
    });
    //点击关闭按钮的时候,遮罩层关闭
    $(".close").click(function () {
        $("#bg,.box").css("display", "none");
    });
});
function initalertcss(){
	//这里http://www.bejson.com/jshtml_format/通过它来互转
	//css
	var tmp='<style>ul{list-style: none outside none;}.box h2{margin: 0;padding: 0;	}.box{position:absolute;width:600px;left:50%;height:auto;z-index:100;background-color:#fff;border:1px #ddd solid;padding:1px}.box h2{height:25px;font-size:16px;background-color:#aaa;position:relative;padding-left:10px;line-height:25px;color:#fff}.box h2 a{position:absolute;right:5px;font-size:14px;color:#fff}.box .list{padding:10px}.box .list li{height:24px;line-height:24px}.box .list li span{margin:0 5px 0 0;font-family:\"宋体\";font-size:12px;font-weight:400;color:#ddd}.showbtn{font:bold 24px \'微软雅黑\'}#bg{background-color:#666;position:absolute;z-index:99;left:0;top:0;display:none;width:100%;height:100%;opacity:0.5;filter:alpha(opacity=50);-moz-opacity:0.5}</style>';
	//bg
	tmp=tmp+'<div id=bg></div>'
	$("body").append(tmp);
}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值