我在jquery中使用fancybox函數。我打開loign框點擊一個標籤,並在其href屬性中調用登錄框html,我spepartly有登錄框html在其中我有另一個鏈接名稱「註冊」在這個我打電話給另一個fancybox,我想刷新其關閉頁面。但這並不令人滿意。這裏是低於jquery fancybox彈出定製?
$(".login").fancybox({
'padding': 0,
'margin': 0,
'width': '45',
'height': '480.0',
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe'
});
$(".register").fancybox({
'padding': 0,
'margin': 0,
'width': '45',
'height': '480.0',
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe',
'onClosed' : function() { self.parent.location.reload(); }
});
<a href="login.html" class="login">login</a>
//inside login.html (it is showing on when popup comes)
<a href="register.html" class="register">register</a> // register class not applying of this, it is coming under login class
任何一個可以解決這個問題 – Carlos 2012-03-22 09:28:24