为什么`history.go(-1)`在关闭fancyBox后不起作用?

时间:2013-12-11 02:53:41

标签: javascript jquery fancybox

我在页面中添加了<a>标记,该标记引用了jQuery fancybox()

<a class='iframe' href="someLink">sth</a>
<input type="button" value=".." onclick="javascript:history.go(-1)"/>
$(document).ready(function(){
    $(".iframe").fancybox({
         type: 'iframe',
         showCloseButton: false,
         'hideOnOverlayClick':true
    });
});

痛苦的问题是:点击.iframe然后关闭fancybox后,页面无法立即进入上一页。我需要点击两次!
是的,它在Chrome浏览器中。但它在FX中运作良好 这有什么问题?!

0 个答案:

没有答案