Boostrap的Popover& Codeigniter循环不起作用

时间:2014-04-26 03:40:16

标签: javascript php codeigniter twitter-bootstrap

我正在尝试获取"详细信息"在popover中显示。然而,只有循环中的第一个元素显示然后我尝试使用模态,而当有5行时,只有1个值显示。

{orders}
<tr>
    <td>{customer_name}</td>
    <td>{mobile_num}</td>
    <td>{lounge}</td>   
    <td>{date_reservation}<br/>{time_reservation}</td>
    <td>{date_posted}</td>
   <td><button id="example" type="button" class="btn btn-default" data-container="body" 
            data-toggle="popover" data-placement="top" 
            data-content="{details}">
            View
            </button></td>  
    <td><button class="confirm btn btn-primary" type="button">Confirm?</button></td>
</tr>   
{/orders}

<script>
$(document).ready(function ()
{
    $(".confirm").confirm();
}
</script>

0 个答案:

没有答案