只是为了快速展示这个概念..
直接在body下创建两个div
<div id="backmask"></div>
<div id="contentwindow"></div>
<!-- somewhere else in your page -->
<a href="somepage.html" class="showinwindow">click me</a>
这些的 css (大致)
<style type="text/css">
#backmask {
display:block;
width:100%;
height:100%;
background-color:black;
position:absolute; top:0; left:0;
z-index:1000;
display:none;
opacity:0.7;
filter:alpha(opacity=70);
}
#contentwindow {
display:block;
width:800px;
height:600px;
background-color:white;
position:absolute; top:50px; left:50px;
z-index:1001;
display:none;
}
.bodywithwinOpenClass { overflow:hidden; width:100%; height:100%; }
</style>
然后(我使用 jquery 进行快速操作)
<script type="text/javascript">
$(".showinwindow").click( function(e) {
/* we don't want the visitor to leave, stop the normal action */
e.preventDefault();
/* get what to show */
var contenttoload = $(this).attr.("href");
/* set the body up */
$("body").addClass("bodywithwinOpenClass");
/* show wins and masker */
$("#backmask").css("display","block");
$("#contentwindow").css("display","block");
/* load the content */
$("#contentwindow").load(contenttoload);
});
</script>
这只是直接输入并没有运行,不包含糖果(用于定位等)希望它解释了所有插件背后的概念等你会发现