我正在使用twitter的引導來創建一個Web應用程序,其中一個應用程序的功能我需要有一些窗體的內部模態。這些表單將通過一些PHP腳本填充數據。我在使用模式功能時遇到問題,版本數據正確顯示在字段中,但我似乎無法提交表單。Modal的Twitter引導窗體
這是我的代碼:
<a href="#edit_user_<?php echo $row['id_user'] ?>" role='button' data-toggle='modal' data-original-title='Edit User' class='btn btn-small btn-info time-link'><i class='icon-pencil icon-white'></i></a>
<button data-toggle='tooltip' data-original-title='Delete User' class='btn btn-small btn-danger time-link'><i class='icon-trash icon-white'></i></button>
<?php
echo "</td>";
echo "</tr>";?>
<div id="edit_user_<?php echo $row['id_user']; ?>" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<form action="" method="POST">
<label for="name">Name</label>
<input type="text" name="name" value="<?php echo $row['name']?>"/>
<label for="email">Email</label>
<input type="text" name="email" value="<?php echo $row['email']?>">
<button type="submit" name="update_btn">Submit</button>
<?php
if (isset($_POST['update_btn'])) {
if (isset($_POST['name']) && $_POST['name'] !="") {
if (isset($_POST['email']) && $_POST['email'] !="") {
$qstr_updateuser = "UPDATE `host_register`.`users` SET `name`=".$_POST['name'].", `email`= ".$_POST['email']." WHERE `users`.`id_user` = ".$row['id_user']."";
echo $qstr_updateuser;
$update_user = mysqli_query($dbc,$qstr_updateuser);
}
}
}?>
</form>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
出於某種原因,我無法理解,在瀏覽器輸出的是:
<div class="modal-body">
<form method="POST" action=""></form>
<label for="name">Name</label>
<input type="text" value="Pedro Oliveira" name="name">
<label for="email">Email</label>
<input type="text" value="[email protected]" name="email">
<button name="update_btn" type="submit">Submit</button>
</div>
我有點無知了!這是引導程序還是我的代碼問題?
我一直在試圖找出你的解決方案,但似乎我無法得到它的工作。 問題在於
對不起,延遲迴復。我只在模態中使用了一次,它對我來說工作得很好。這可能是因爲我使用JavaScript AJAX父提交表單而不是提交頁面和刷新。可能值得嘗試一下。我可以解釋更多,如果你仍然需要它 – Will 2013-05-07 09:49:03