我有一个简单的HTML表,我是通过对我的数据库的PHP调用生成的:
<?php
foreach($records as $record){
$staffName = $availability->getField('fullName') ;
$staffMobile = $availability->getField('cell') ;
}
然后我在表格上显示名称上的链接到Bootstrap模式:
<tr>
<td><a href="#" data-toggle="modal" data-target="#myModal"><?php echo $staffName; ?></td>
<td><?php echo $staffMobile ;?>Mobile Number</td>
</tr>
我希望看起来有一个按钮的模式能够调用并短信列表中的工作人员。我现在的模态出现了:
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">Contact Staff</h4>
</div>
<div class="modal-body">
<button type="button" class="btn btn-default" data-dismiss="modal">Call</button>
<button type="button" class="btn btn-default" data-dismiss="modal">SMS</button>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
我希望使用以下格式引用“呼叫”和“短信”按钮:
tel:<?php echo $staffMobile ;?>
sms:<?php echo $staffMobile ;?>
但我无法找到一种方法将每个$ staffMobile值链接到只有一个实例的模态。
现在已经为这几个小时挣扎而没有取得任何进展 - 甚至不确定这是否可能