我的 Fancybox 有问题,我正在尝试检索一些 php 数据,但没有正确重新加载,我使用 firebug 跟踪页面上的活动,似乎实际上是从我的数据库中检索正确的数据但是Fancybox 不解析该信息,它只显示第一个值。这是我的幻想箱
$(document).ready(function() {
$(".various").fancybox({
fitToView : false,
width : '70%',
height : '70%',
autoSize : true,
closeClick : false,
scrolling : 'auto',
titlePosition : 'inside',
openEffect : 'fade',
closeEffect : 'fade',
type : 'inline'
}
});
});
这是我的一段 php 代码,我在检索 $value['managementSummary'] 时遇到问题:
echo '<td><p class="various" href="#inline" title="Reference ID # ' . $referenceId . '">' .$value['managementSummary']. ' ...(+)';
echo '<div style="display: none;"><div id="inline" style="width:400px;height:200px;overflow:auto;"> '. $value['managementSummary'] .' </p></td></div>';
我知道我必须使用某种功能刷新我的内容,例如:
beforeLoad : function() {
this.content = '. $value['managementSummary'] .';
当然它不起作用,有什么想法吗???谢谢!!!