使用php从模式内的href传递值

时间:2017-06-03 09:38:11

标签: php modal-dialog href

我有这样的链接。

<a value-id='1' href='#myModal' class='marker' title='Edit'>LINK</a>

在模态中我想在php中接收值。

<div id="myModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">

            <?php
                //CODE TO PUT THE VALUE INSIDE A VARIABLE
            ?>    

        </div>
    </div>
</div>

我的问题是如何将值放在变量中?

1 个答案:

答案 0 :(得分:0)

您可以使用bootstrap的.on(shown.bs.modal),如下所示获取其相关的事件目标并获取其文本。