在嘗試每個谷歌和stackoverflow的結果後,我決定要求你的幫助。表單AJAX發送內部twitter引導模式(Symfony2)
我正在構建一個Symfony2應用程序。在我的應用程序的每個視圖中,我都包含一個twitter引導模式元素,其中包含發送建議/問題郵件的表單。所以,從我的基礎樹枝模板,我包括這個隱藏的模式。
模式顯示/解除工作就好了。根據需要,Modal包含我的表單。
我想從這裏實現的是:AJAX提交表單,郵件在控制器中發送,對視圖的響應。有了這個響應是json,並且將模式的html更改爲「* dismiss_button *」+「發送電子郵件」或「有問題」的成功功能。
看起來相當簡單。那麼,在嘗試了大多數解決方案之後,我無法阻止表單提交。所以我決定保持它非常簡單。
這裏,模態代碼:
<!-- Modal -->
<div id="myModal" 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">Send your suggestion</h3>
</div>
<div class="modal-body">
{% if is_granted('ROLE_USER') %}<p>We will reply to {{ app.user.mail }}</p>
{% else%}<p>Don't forget to include a reply-to email in your suggestion.</p>
{% endif %}
<form action="{{ path("mgfbc_arrt") }}" method="post" id="arrt">
<div class="control-group">
<label for="username">Text:</label>
<div class="controls">
<textarea id="mail" name="mail" rows="4" style="width:500px;"></textarea>
</div>
</div>
<div class="modal-footer">
<input type="submit" id="butt" class="btn btn-success" value="Send">
</div>
</form>
</div>
而且,JS:
<script type="text/javascript">
$("#butt").on('click', function(e) {
e.preventDefault();
});
</script>
亂投醫後,我已經達到在這個JavaScript並不妨礙點提交表單。
我在做什麼錯?
在此先感謝。
先給裏面的腳本警報,看看是否能在點擊觸發。如果它沒有觸發,那麼你需要在模態的'shown'事件上綁定這個點擊事件。 '('#'myModal')。on('shown',function(){'[Source](http://twitter.github.io/bootstrap/javascript.html#modals) – anpsmn