我正在为我的 Web 应用程序实现颜色框模式。我被困在我的颜色框中显示一个实例变量。
我在彩盒网站上找不到做这种事情的选项。
这是我的代码。
$.ajax({
type: 'GET',
url:'/leave',
async: false,
data:{ foo1:currentCellText
},
success:function(data){
$.colorbox({html: "<%= @cook%>", width:"25%",height:"200px"});
},
error:function(data){
alert("Failure");
}
});
我的实例变量@cook 有一个数组。如何在颜色框中显示数组内容?
希望有人可以帮助我。
问候, 尼基尔