0
我有一個簡單的形式,我在模態內顯示。當我想提交它時,它會以某種方式提交併重新加載頁面,但表單不會提交給「example.php」。我試圖將表單開放標籤放在任何地方,但它不起作用。我只是想要一個簡單的提交,沒有什麼花哨的Ajax或任何東西。我在這裏錯過了什麼?Bootstrap簡單提交表單內模態
<form method="post" action="example.php">
<div class="modal fade" id="exampleFormModal" aria-hidden="false"
role="dialog" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="exampleFormModalLabel">Example Modal</h4>
</div>
<div class="modal-body">
<div class="row">
<div class="col-lg-4 form-group">
<input type="text" class="form-control" name="name" placeholder="Name">
</div>
<div class="col-sm-12 pull-right">
<button class="btn btn-primary btn-outline" type="submit">Submit</button>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
爲什麼不嘗試把'
'內模HTML而不是HTML模式裏面'' – Shehary這還挺我的意思用'我試圖將形式打開的標籤隨處可見,但它不是helping';) – Hardist
你可以發佈'example.php'代碼 – Shehary