作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 MagnificPopup 在使用 jQuery 加载内容后显示弹出窗口 get()
方法。当 get()
调用完成,我想显示下面的弹出窗口:
<div id="tagsearch-popup" class="panel panel-default mfp-hide">
<div class="panel-heading">Tag Search</div>
<div class="panel-body">
<div class="col-xs-12 no-padding">
Example
</div>
</div>
</div>
这是我正在使用的 jQuery。
$.get(url, function (data) {
success: {
$("#recalculation-guid").html(data);
// Display popup now
}
});
但是,当我查看 MagnificPopup 示例时,我只能找到将弹出窗口绑定(bind)到按钮的示例。我想以编程方式创建它。
如何使用 MagnificPopup 转换 <div>
没有点击按钮就可以进入弹出窗口吗?
最佳答案
有一个名为 open 的方法:
$.magnificPopup.open({
items: {
src: 'someimage.jpg'
},
type: 'image'
// You may add options here, they're exactly the same as for $.fn.magnificPopup call
// Note that some settings that rely on click event (like disableOn or midClick) will not work here
}, 0);
//and also close, if you're into that ;)
$.magnificPopup.close();
所以在你的代码中:
$.get(url, function (data) {
success: {
$("#recalculation-guid").html(data);
// Display popup now
$.magnificPopup.open({...});
}
});
关于javascript - 没有按钮点击的 MagnificPopup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30329317/
我是一名优秀的程序员,十分优秀!