douzhicai7148 2015-09-04 09:59
浏览 83
已采纳

如何在模态上传递php值? bootstrap 3,

I am new to bootstrap 3 and my coding doesnt seem to pass the php value to a modal? I usually code like this in bootstrap 2++, i decided to add data target also, this is my code:

<a class="btn btn-link"  
   href="#reply<?php echo $product_id; ?>" 
   data-toggle="modal" 
   data-target="#reply<?php echo $product_id; ?>">
       <i class="icon-reply"></i> 
       Reply
</a>

and for the modal:

<a class="btn btn-link"  
    href="#reply<?php echo $product_id; ?>" 
    data-toggle="modal"
    data-target="#reply<?php echo $product_id; ?>">
         <i class="icon-reply"></i> 
         Reply 
</a>

what am i missing?

  • 写回答

1条回答 默认 最新

  • dongxun7301 2015-09-04 10:58
    关注

    According to the migration guide from Bootstrap 2 to Bootstrap 3, there were a few non-compatible changes made, specifically to the modal object. It looks like in your case, you need to remove the hide class from your modal in order to work in Bootstrap 3:

    [...] you should no longer apply .hide to .modal in your markup.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部