0
從我的下面的代碼,它不會加載AJAX響應點擊鏈接後的花式框。Jquery Fancy Box加載問題AJAX響應
<a>
標識的ID是動態生成的。
但是,當我第二次點擊相同的鏈接加載,但AJAX功能也被召回。
$(document).ready(function()
{
$(".cont").live('click',function(e)
{
//Cancel the default action (navigation) of the click.
e.preventDefault();
var contentId = $(this).attr('id');
$('#apps').load('/app/get-app-details', function(){
$("#"+contentId).fancybox();
});
});
});
<a class="cont" href="#device_detection" id="apps_<?= $regUsers->id; ?>"> Click to view apps</a>
請給我一個解決方案。
是這方面的需求將下降投票。它可能有重複的主題。但內容不同。我已經檢查過類似的問題,這些不是我的問題。 – Shaolin
什麼版本的fancybox? – JFK
版本1.3.4 – Shaolin