任何人都可以帮助我如何从父 js 文件中调用 fancybox 弹出窗口。当我单击按钮时,如果功能中的条件为真,它将一个功能,我需要打开fancybox弹出窗口。提前谢谢..
$(document).ready(function() {
$("#EXTERNAL").fancybox({
'width' : '80%',
'height' : '100%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'href' : 'openpopup.html',
'type' : 'iframe'
});
});
function clickFancy(){
if(true){
// here i need open fancypopup
}else(){
}
<body>
<form name="frm1">
<input type="submit" name="fancy" onclick="clickFancy()">
<button>Click me</button>
</form>
</body>
<html>