我想調用fancybox對話框(內容加載爲iframe)的加載函數,但調用「callbackOnShow」不起作用。感謝任何幫助。Fancybox callbackOnShow not working
這裏的代碼片段:
的jQuery:
$("#link1").fancybox({
'width': '50%',
'height': '50%',
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe',
'callbackOnShow': function() {
alert("Hello");
}
});
HTML代碼,在顯示的fancybox:
<div>
<div class="signup">
<div id="test">
<a id="Log" class="but" href="#"><strong>Sign in</strong> </a>
</div>
</div>
</div>