fancyboxが機能する特別な理由はありますか
$.fancybox.showActivity();
スクリプトでエラーがスローされますか?関数を呼び出す必要がある特定の順序はありますか?この関数は、コンテンツがポップアップにロードされる前に、ロード中の画像を表示することを目的としています。これが私のコードです:
$(".info_button").click(function () {
var pictid_browse = $(this).parent().find('#pictid').val();
$.fancybox.showActivity();
$.ajax({
url: "ajax.html",
type: "POST",
async:false,
data: ({f:"get_info",pictid:pictid_browse}),
success: function(data){
$.fancybox({
'autoDimensions' : false,
'width' : 950,
'height' : 'auto',
'transitionIn' : 'none',
'transitionOut' : 'none'
});
$.fancybox({content:data,'autoDimensions':true,'scrolling':'no',});
}
});
return false;
});
私が得ているエラーは次のとおりです。
Uncaught TypeError: Object function () {
F.open.apply( this, arguments );
} has no method 'showActivity'
また
TypeError: 'undefined' is not a function (evaluating '$.fancybox.showActivity()')
Fancyboxバージョン:2.1.3
アップデート:
何が起こっているのかわかりませんが、
$.fancybox.showLoading();
の外
$(".info_button").click(function () {
次に、起動してアニメーションを表示します。しかし、クラス'.info_button'のアイテムをクリックすると、それが発生する必要があります
次の解決策も問題を解決していないようです。
$(".info_button").bind('click', function (e) {
e.stopPropagation(); e.preventDefault();
}
調査によると、次のコードが削除されると読み込みがトリガーされます。
$.fancybox({
content:data,
'autoDimensions' : true,
'width' : 'auto',
'height' : 'auto',
'transitionIn' : 'none',
'transitionOut' : 'none',
'scrolling':'no'
});
これは、ファンシーボックスがajax関数内に含まれていると正常に機能しないことを意味する場合がありますが、理由は-私には手がかりがありません