将 simplemodal 模态放置在现有 div 的顶部
我正在尝试使用 simplemodal 插件将模式对话框放置在现有 div 之上。
这是我的代码;它不起作用:
jQuery(function ($) {
$('.slider-caption .basic').click(function (e) {
var p = $("#slider1");
var position = p.position();
$('#basic-modal-content').modal({
position: "absolute",
left: position.left,
top: position.top
});
return false;
});
});
它仍在窗口中间绘制。我还尝试将 autoPosition 选项设置为 false,但这只会使其绘制在左侧现有内容的下方。
我正在使用 simplemodal 1.4.1 版本。
I'm trying to position a modal dialog on top of an existing div, using simplemodal plugin.
Here's my code; it's not working:
jQuery(function ($) {
$('.slider-caption .basic').click(function (e) {
var p = $("#slider1");
var position = p.position();
$('#basic-modal-content').modal({
position: "absolute",
left: position.left,
top: position.top
});
return false;
});
});
It's still drawing in the middle of the window. I've also tried to set autoPosition
option to false, but that just makes it draw below the existing content at the left.
I'm using version 1.4.1 of simplemodal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这是我为了让它发挥作用所做的事情:
Here's what I did to get it to work: