开发者

Is it possible to show the database values in jquery thickbox

开发者 https://www.devze.com 2023-03-16 13:57 出处:网络
In hiddenModalContent div is it possible to display the database value as once thickbox is opening it just 开发者_Go百科showing nothing

In hiddenModalContent div is it possible to display the database value as once thickbox is opening it just 开发者_Go百科showing nothing

<?php
foreach($this->list_details as $key=>$details)
{?>
<a href="#TB_inline?height=300&width=300&inlineId=hiddenModalContent&modal=false" class="thickbox"><div class="sc_content_subheading"><? echo $this->escape($details['list_name'])?></div></a>
<div id="hiddenModalContent" style="display:none;">
<span class="content_subheading">List name&nbsp;</span><? echo $details['list_name'];?><br/>
</div>
<?php }?>


It seems all you are only outputting the list name. What else in the array would you like to show?

0

精彩评论

暂无评论...
验证码 换一张
取 消