我想從ajax調用中動態加載內容打開colorbox。點擊下一步,它會加載頁面上的另一個塊,並單擊該塊,應該打開彩盒覆蓋。colorbox不能使用Ajax
但是對於第一個項目,colorbox被打開,然後我無法將colorbox與鏈接綁定。
請看,我這是用來綁定顏色框JavaScript代碼:
$(document).ready(function() {
$('#recommended-app-wrapper .app_download_link').each(function() {
$(this).colorbox({
href: $(this).attr('href'),
iframe: false,
onComplete: function() {
// Tooltip
$('#modal a.link_tooltip').each(function() {
$(this).click(function() {
return false;
});
var content = $(this).next('.hidden').html();
$(this).aToolTip({
tipContent: content,
fixed: true,
clickIt: false,
xOffset: -180,
yOffset: 30
});
});
// Clear-Default
$('#modal input.clear-default').clearDefault();
}
});
});
});
它調用內容頁
JSP代碼
<dsp:a page="/fragments/product_app_download.jsp" iclass="custom custom-blue-smapp_download_link get-app">
<dsp:param name="id" param="element.id"/>
Get app
</dsp:a>
請參閱主網頁,從哪裏AJAX正在進行調用,並加載用戶可以單擊並打開彩盒的塊。我採取了代碼的截圖。
我認爲,問題是,我對未來的點擊它不綁定我的下一個項目彩盒結合被稱爲只有一個時間的document.ready的顏色框,再經過。
請幫忙。
謝謝