2013-05-04 62 views
2

我想用onclick打開一個新的頁面到顏色框。但問題是我已經在一個colorbox中,我需要發送一個參數到新的頁面。用普通方法打開colorbox不起作用。我試過這個,但沒有奏效。我該怎麼辦?(我需要從一個頁面顏色框UUID發送到另一個頁面也顏色框)從colorbox中打開新的colorbox並向其發送數據

function openAddCarBox(i) { 
var uuid = document.getElementsByName('uuid' + i).item(0).value; 
$("#colorbox").colorbox({ 
    iframe : true, 
    innerWidth : 500, 
    innerHeight : 300 
}); 
$('#colorbox').colorbox({ 
    href : 'vehicle.jsp?uuid=' + uuid, 
    title : '', 
    open : true 
}); 
} 
+0

http://stackoverflow.com/questions/8010413/jquery-colorbox-redirect-forward-inside-existing-colorbox – MoienGK 2013-05-04 13:15:05

回答

2

嘗試使用IDS類,而不是用下面的方法。 即

$(document).on("click", ".colorbox", function(){ 
 
$.colorbox({ 
 
     href: $(this).data('url'), 
 
     iframe : true, 
 
     innerWidth : 500, 
 
     innerHeight : 300 
 
}); 
 
})
<a href="javascript:void(0);" data-url="Your Link with id" class="colorbox"></a>

相關問題