我有一个固定的 div 并使用 css 放置在页面上。我有另一个 div 动态生成并添加到页面中心的表单和位置。当单击文档时添加此 div。
问题是当我单击文档时,div 动态添加到页面并正确定位,但静态 div 位置发生变化。我只是不明白为什么会这样。 这是我的代码
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$(document).click(function (e) {
// Check for left button click
if (e.button == 0) {
$('form').append('<div id="dvfloat" class="float_div">Welcome</div>').center().fadeIn('slow');
}
});
jQuery.fn.center = function () {
this.css("position", "absolute");
this.css("top", Math.max(0, (($(window).height() - this.outerHeight()) / 2) +
$(window).scrollTop()) + "px");
this.css("left", Math.max(0, (($(window).width() - this.outerWidth()) / 2) +
$(window).scrollLeft()) + "px");
return this;
}
});
</script>
<style type="text/css">
.login_div {
background-color: Yellow;
margin-left: 50px;
position: absolute;
width: 100px;
}
.float_div {
background-color: Green;
width: 100px;
height:50px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="static_dv" class="login_div"> hi how r u ? </div>
</form>
</body>
</html>
请运行我的代码,看看效果。当我单击文档时,名为“static_dv”的静态 div 会重新定位,但我没有编写任何代码来这样做。我希望静态 div 应该改变它的位置。解决办法是什么。谢谢