我的网页上有一个使用PHP循环回显的用户列表。名称是链接看起来像这样。
user.php
因此,当我点击每个用户时,我将被带到$user['id']
页面。
$_GET['id']
根据网址中的查询参数{{1}}显示每个用户的信息。使用{{1}}方法。
所以,这就是我现在的情况。
我现在要做的是,在 Bootstrap模型
中显示用户信息那么,我怎么能将该查询参数放入Bootstrap模型中。并执行相同的PHP过程以获得相同的功能?
答案 0 :(得分:1)
如果您有Local and Remote Notification Programming Guide,则可以获得与其相关的结果数量。
以下代码似乎是从这个问题google
中提到的<强> HTML 强>
<a data-toggle="modal" data-id="ISBN564541" title="Add this item" class="open-AddBookDialog btn btn-primary" href="#addBookDialog">test</a>
<div class="modal hide" id="addBookDialog">
<div class="modal-header">
<button class="close" data-dismiss="modal">×</button>
<h3>Modal header</h3>
</div>
<div class="modal-body">
<p>some content</p>
<input type="text" name="bookId" id="bookId" value=""/>
</div>
</div>
<强>的Javascript 强>
$(document).ready(function () {
$(".open-AddBookDialog").click(function () {
$('#bookId').val($(this).data('id'));
$('#addBookDialog').modal('show');
});
});