1. 程式人生 > >自己寫了一個jQuery的彈出層,非常非常簡單

自己寫了一個jQuery的彈出層,非常非常簡單

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title></title>
    <style type="text/css">
        .raceShow {
            background-color: red; /* #ffffff*/
            border: solid 1px #ccc;
            position: absolute;
            display: none;
            width: 800px;
            height: 600px;

            padding: 5px;       

            top: 40px;

            left: 64px;

        }
    </style>
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
    <script type="text/javascript">
        $(function () {
            //彈出層
            $("#btnShowDiv").click(function (event) {
                $("#racePop").show(300);
            });
            //隱藏層
            $("#aClose").click(function (event) {
                $("#racePop").hide(300);
            });
        });
    </script>
</head>
<body>
    <input type="button" value="彈出層" id="btnShowDiv" />
    <div id="racePop" class="raceShow">
        <div class="div" style="width: 100%; height: 100%; overflow-y: auto;">
            <a id="aClose" style="cursor:pointer;">[關閉]</a>
            <h1>Hello World!</h1>
        </div>
    </div>
</body>
</html>