我regestering一個jQuery的fancybox像這樣:檢查jQuery「Fancybox」是否已經註冊?
$(document).ready(function() {
$("#help").fancybox({
'width': '90%',
'height': '90%',
'autoScale': true,
'transitionIn': 'elastic',
'transitionOut': 'none',
'titleShow': false,
'type': 'iframe'
});
});
然而,在頁面傳送/回發是越來越多次註冊,減慢下來,以突破點。有沒有辦法檢查事件是否已經註冊,如果沒有,註冊?
僞代碼:
//check if fancybox has not been registered
if($("help").fancybox == null))
{
//register fancy box
}
Fancybox 2似乎並沒有這樣做。至少不是以我的經驗。 –