我正在使用fancy box创建弹出窗口并使用iframe在其上加载其他页面。这是我的代码
<script type="text/javascript">
$(document).ready(function() {
$('.calendar .day').click(function() {
day_num = $(this).find('.day_num').html();
day_data = prompt('Enter Stuff', $(this).find('.content').html());
if (day_data != null) {
$.ajax({
url: window.location,
type: 'POST',
data: {
day: day_num,
data: day_data
},
success: function(msg) {
location.reload();
}
});
}
});
});
$(document).ready(function(){
$("a.iframeFancybox1").fancybox({
'width' : 800,
'height' : 650,
'overlayOpacity' : '0.4',
'overlayColor' : '#000',
'hideOnContentClick' : false,
'autoScale' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'type' : 'iframe'
});
});
</script>
它成功加载页面并完成这些工作。但是,它不是关闭弹出窗体,而是在弹出窗口中加载弹出源窗体。我想在完成工作时关闭弹出窗体并返回到生成弹出窗口的主菜单页面。如何通过弹出窗体的按钮单击来实现此目的。
问候,Rangana
答案 0 :(得分:34)
致电$.fancybox.close();
还可以在post
中查看此答案
- 如何从其他元素关闭FancyBox? ?
醇>只需致电
$.fn.fancybox.close()
即可 你的onClick事件
所以你应该只能添加fn
。
答案 1 :(得分:14)
我必须在我的 Drupal 网站上使用parent.jQuery.fancybox.close()
才能使其正常运行。
答案 2 :(得分:7)
您可以使用内联通话
<input type="button" onclick="$.fancybox.close()" value="CloseFB" />
或者您可以使用名为
的功能<script>
function closeFB() {
// Before closing you can do other stuff, like page reloading
$("#destination_div").load("?v=staff #source_div_with_content");
// After all you can close FB
$.fancybox.close();
}
</script>
<input type="button" onclick="closeFB()" value="CloseFB" />
onClickevent中的调用函数
答案 3 :(得分:4)
这是一个老话题,但我想我会分享我的两分钱。
我在使用onclick事件关闭fancybox iframe时遇到了类似的问题,经过多次尝试,这对我来说很有用:window.parent.jQuery.fancybox.close()
以下是使用输入按钮的示例:
<input type="button" class="formbutton" value="Close" onClick="window.parent.jQuery.fancybox.close();" />
同样,我在一个锚(a)标签上测试了onlick,它工作正常。
答案 4 :(得分:2)
$.fn.fancybox.close()
对版本2.x不起作用,实际上它会引发错误。如果您使用的是版本2.x,请尝试使用$.fancybox.close(true)
。
答案 5 :(得分:2)
由于我的关闭按钮具有不同的功能:关闭弹出窗口,关闭fancybox。它需要使用e.stopPropagation()来阻止冒泡事件;
$('.close-btn').on('click', function(e) {
e.preventDefault();
e.stopPropagation();
$(this).parent().hide();
$.fancybox.close();
});
答案 6 :(得分:1)
SIMPLE解决方案,找到要关闭的链接(它有一个类fancibox-close)并在6秒(或6000毫秒)内完成
setTimeout(function(){
$('.fancybox-close').click();
}, 6000);
答案 7 :(得分:0)
这对我有用......
<script type="text/javascript" src="../../js/jquery-ui.js"></script>
<script src="../../js/fancybox-2.1.5/jquery.fancybox.js" type="text/javascript"></script>
<script src="../../js/fancybox-2.1.5/jquery.fancybox.pack.js" type="text/javascript"></script>
<link href="../../js/fancybox-2.1.5/jquery.fancybox.css" rel="stylesheet" type="text/css" />
<script lang="javascript">
var J$ = jQuery.noConflict();
function SelectAndClose() {
txtValue = document.getElementById('<%= _browseTextBox.ClientID %>').value;
window.returnValue = txtValue.value;
var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
// Opera 8.0+ (UA detection to detect Blink/v8-powered Opera)
var isFirefox = typeof InstallTrigger !== 'undefined'; // Firefox 1.0+
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
// At least Safari 3+: "[object HTMLElementConstructor]"
var isChrome = !!window.chrome && !isOpera; // Chrome 1+
var isIE = /*@cc_on!@*/false || !!document.documentMode; // At least IE6
if (isIE == true) {
//alert("iexcplorer");
parent.J$.fancybox.close();
//document.getElementById("closeFancyInternet").click();//For IExplorer
}
else {
//alert("another one");
document.getElementById("closeFancy").click(); //For Firefox
}
return false;
}
function closeBrowsing() {
document.getElementById("closeFancy").click();
window.close();
return false;
}
</script>
如果您想查看浏览器必须看到以下链接:http://jsfiddle.net/9zxvE/383/
答案 8 :(得分:-1)
使用fancybox的事件关闭按钮:
document.getElementsByClassName("fancybox-item fancybox-close")[0].click();