我想通过js函数调用inlin popup。但怎么样?我尝试了很多
使用"输入:ajax"但不是"键入:inline"
function abc()
{
$.magnificPopup.open({items:
{
src: PAGE_URL,
type: 'ajax'},
closeOnContentClick: false, closeOnBgClick: false, showCloseBtn: true, enableEscapeKey: false,
});
}
我想要内联弹出窗口
例如
function xyz()
{
$('.simple-popup').magnificPopup({
type: 'inline'
});
}
谢谢