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
});
}
http://stackoverflow.com/questions/8010413/jquery-colorbox-redirect-forward-inside-existing-colorbox – MoienGK 2013-05-04 13:15:05