1
我想建立一個模式,使用bootstrap的錯誤或成功味精,但它沒有被觸發?如果填寫了所有字段(沒有成功信息),電子郵件將發送,如果一個或多個字段留空(不成功),將不會發送?你可以看到表格here:莫代爾沒有觸發驗證,但電子郵件發送電子郵件 - bootstrap
這個網站是一個正在進行的工作,我是所有這些引導的新手!
我錯過了什麼?
這裏的HTML &觸發腳本:
<div class="row">
<div class="span8">
<div id="formMode" class="modal fade">
<div class="modal-header"></div>
<div class="modal-body"></div>
<div class="modal-footer"></div>
</div>
<form action="contact.php" method="POST" id="contactform" class="form-horizontal">
<fieldset>
<legend>Please fill in the form bellow and a sales representive will be in contact swiftly.</legend>
//form details
</div>
</fieldset>
</form>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
var mode_value = getQuerystring('mode');
switch (mode_value) {
case '':
$('#formMode').modal('hide');
break
case 'POST':
$('.modal-header').html('h1>Form submitted...</h1>');
$('.modal-body').html('<h2>Everything <em>seemed</em> to be correct.</h2>');
$('.modal-footer').html('<a href="#" class="btn" data-dismiss="modal">Close</a>');
$('#formMode').modal('show');
break
case 'success':
$('.modal-header').html('');
$('.modal-body').html('<div class="alert alert-block alert-success"><h4 class="alert-heading">Your message was sent</h4>We will respond to you shortly</div>');
$('.modal-footer').html('<a href="index.html" class="btn btn-success" data-dismiss="modal">Close</a>');
$('#formMode').modal('show');
break
case 'fail':
$('.modal-header').html('');
$('.modal-body').html('<div class="alert alert-block alert-error"><h4 class="alert-heading">The message was not sent</div>');
$('.modal-footer').html('<a href="#" class="btn btn-danger" data-dismiss="modal">Close</a>');
$('#formMode').modal('show');
};
})
</script>
</div>
您是否正在加載JQuery UI,因爲'.modal()'方法沒有附帶標準JQuery庫文件 –
@SamuelCook我從這裏得到了這個想法[link](https://github.com/damarusama/ bootstrap_contact_form.git)html格式非常相似,但腳本完全相同。 – Flyingblind