gpt4 book ai didi

javascript - 使用JQuery弹出框

转载 作者:太空宇宙 更新时间:2023-11-04 15:28:56 25 4
gpt4 key购买 nike

我是 JQuery 的新手,我想在我的页面中添加一个弹出框。
我正在使用以下 jQuery 插件(取自 Ray Stone 的 leanModal):

(function($) {
$.fn.extend({
leanModal: function(options) {
var defaults = {
top: 100,
overlay: 0.5,
closeButton: null
};
var overlay = $("<div id='lean_overlay'></div>");
$("body").append(overlay);
options = $.extend(defaults, options);
return this.each(function() {
var o = options;
$(this).click(function(e) {
var modal_id = $(this).attr("href");
$("#lean_overlay").click(function() {
close_modal(modal_id)
});
$(o.closeButton).click(function() {
close_modal(modal_id)
});
var modal_height = $(modal_id).outerHeight();
var modal_width = $(modal_id).outerWidth();
$("#lean_overlay").css({
"display": "block",
opacity: 0
});
$("#lean_overlay").fadeTo(200, o.overlay);
$(modal_id).css({
"display": "block",
"position": "fixed",
"opacity": 0,
"z-index": 11000,
"left": 50 + "%",
"margin-left": -(modal_width / 2) + "px",
"top": o.top + "px"
});
$(modal_id).fadeTo(200, 1);
e.preventDefault()
})
});

function close_modal(modal_id) {
$("#lean_overlay").fadeOut(200);
$(modal_id).css({
"display": "none"
})
}
}
})
})(jQuery);

我的 CSS 看起来像这样:

#lean_overlay {
position: fixed;
z-index:100;
top: 0px;
left: 0px;
height:100%;
width:100%;
background: #000;
display: none;
}
#signup {
width: 404px;
padding-bottom: 2px;
display:none;
background: red;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 0px 0px 4px rgba(0,0,0,0.7);
-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7);
-moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);
}

我的初始化脚本是这样的:

<script type="text/javascript">
$(function() {
$("#signup").leanModal();
});
</script>

最后,这是我正在使用的 HTML:

<p id="examples" class="section box">
<strong>Example:</strong>
<a id="go" rel="leanModal" name="signup" href="#signup">With Close Button</a>
</p>

<div id="signup">
<div id="signup-ct">
<div id="signup-header">
<h2>This is a test</h2>
<p>testing.</p>
<a class="modal_close" href="#"></a>
</div>
</div>
</div>

有了这段代码,弹出窗口就不会出现了,我觉得一定有一个非常简单的解决办法,但我正在绞尽脑汁想弄明白。如果您能提供任何帮助,我们将不胜感激!

最佳答案

我知道其他人建议使用现有的库(强烈推荐)。但是,如果您想用您的特定代码解决问题,我认为您做错了:

您通过“leanmodal”调用连接到了错误的元素。

我创建了一个 jsFiddle,它会在单击链接时弹出您想要的对话框。您可以在这里访问它: http://jsfiddle.net/eWUgE/

基本上,我修改了以下行:

$("#signup").leanModal();

成为:

$('#go').click(function() { 
$(this).leanModal();
});

关于javascript - 使用JQuery弹出框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16575450/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com