我在同一页面上有一个包含两个表单的页面。这两个表单基于视口显示(响应式设计/媒体查询css)。
在页面上我使用bootstrapvalidator来验证字段,使用Ajax以便在没有浏览器重新加载的情况下提交表单。由于bootstrapvalidator,Ajax代码看起来像这样 - 一个针对所有表单的代码:
$('form').on('success.form.bv', function(e) {
var thisForm = $(this);
//Prevent the default form action
e.preventDefault();
//Hide the form
$(this).fadeOut(function() {
//Display the "loading" message
$(".loading").fadeIn(function() {
//Post the form to the send script
$.ajax({
type: 'POST',
url: thisForm.attr("action"),
data: thisForm.serialize(),
//Wait for a successful response
success: function(data) {
//Hide the "loading" message
$(".loading").fadeOut(function() {
//Display the "success" message
$(".success").text(data).fadeIn();
});
}
});
});
});
这段代码的问题似乎是,代码将发送两封邮件,一封用于可见表单,另一封用于隐藏的移动/标签表单 - 两种表单实际上都会显示成功消息(当我调整浏览器大小以同时定位桌面和mob /平板电脑时,我可以看到两种形式的成功消息)。首先我认为是因为e.preventDefault();
出了问题然后我认为问题是由提交按钮的提交名称/ id的name conflicts引起的。但现在我很确定它与同一页面上两个表单的存在有关 - 因为我现在设法解决整个问题的唯一方法就是完全删除其中一个表单,这就是真的不是解决方案!
我的表单看起来像这样,具有不同的表单ID(html5form / html5formmob)和输入提交ID(mob / desk):
<form id="html5Form" method="post" action='mail/mail.php'
class="form-horizontal"
data-bv-message="This value is not valid"
data-bv-feedbackicons-valid="glyphicon glyphicon-ok"
data-bv-feedbackicons-invalid="glyphicon glyphicon-remove"
data-bv-feedbackicons-validating="glyphicon glyphicon-refresh">
<div class="form-group">
<label>Name</label>
<input class="form-control" type="text" name="name" id="name"
data-bv-message="The username is not valid"
required data-bv-notempty-message="Please give a name"/>
</div>
<div class="form-group">
<label>Mail</label>
<input class="form-control" name="email" id="email" type="email" required data-bv-emailaddress-message="No valid email" />
</div>
<div class="form-group">
<label>Msg</label>
<textarea class="form-control" name="message" id="message" rows="7" required
data-bv-notempty-message="No empty msg"></textarea>
</div>
<input type="submit" id="mob" value="Send"/>
</form>
<div class="loading">
Sending msg...
</div>
<div class="success">
</div>
所以我的问题是,有没有办法使用CSS或JS禁用/启用整个表单? ..这可能是一个解决方案,还是你有其他建议?
答案 0 :(得分:0)
尝试将您的JS部分更改为:
$('form').on('success.form.bv', function(e) {
var thisForm = $(this), parent = thisForm.parent();
//Prevent the default form action
e.preventDefault();
if (thisForm.is(':visible')) {
//Hide the form
thisForm.fadeOut(function() {
//Display the "loading" message
$(".loading", parent).fadeIn(function() {
//Post the form to the send script
$.ajax({
type: 'POST',
url: thisForm.attr("action"),
data: thisForm.serialize(),
//Wait for a successful response
success: function(data) {
//Hide the "loading" message
$(".loading", parent).fadeOut(function() {
//Display the "success" message
$(".success", parent).text(data).fadeIn();
});
}
});
});
}
});
即使您通过调整浏览器大小来切换表单,也会动态运行。
答案 1 :(得分:0)
尝试以下方法:
$('form').on('success.form.bv', function(e) {
var thisForm = $(this);
//Prevent the default form action
e.preventDefault();
if (getComputedStyle(thisForm[0], null).display != "none" )
{
//Hide the form
$(this).fadeOut(function() {
//Display the "loading" message
$(".loading").fadeIn(function() {
//Post the form to the send script
$.ajax({
type: 'POST',
url: thisForm.attr("action"),
data: thisForm.serialize(),
//Wait for a successful response
success: function(data) {
//Hide the "loading" message
$(".loading").fadeOut(function() {
//Display the "success" message
$(".success").text(data).fadeIn();
});
}
});
});
});
}
});
但您也可以单独验证每个表单:
$('#html5Form')
.formValidation({
... options ...
})
.on('success.form.fv', function(e) { ... ajax call ...} );
甚至更好。在函数中包装ajax调用
function callAjax(form)
{
form.fadeOut(function() {
//Display the "loading" message
$(".loading").fadeIn(function() {
//Post the form to the send script
$.ajax({
type: 'POST',
url: form.attr("action"),
data: form.serialize(),
//Wait for a successful response
success: function(data) {
//Hide the "loading" message
$(".loading").fadeOut(function() {
//Display the "success" message
$(".success").text(data).fadeIn();
});
}
});
});
});
}
$('#html5Form')
.formValidation({
... options ...
})
.on('success.form.fv', callAjax.bind(null, $(this)) );
$('#html5formmob')
.formValidation({
... options ...
})
.on('success.form.fv', callAjax.bind(null, $(this)) );