当用户提交表单时,我已经在互联网上搜索了几个小时,试图了解如何向下滑动(非模态)绿色警报。我认为它与表单验证有关但不确定。请帮忙。
代码不起作用,因为当我单击表单上的提交时,没有任何反应。验证不适用于表单。 (表单操作属性已留空。)method =" post"
我正在使用服务器提供的表单处理脚本(不确定是否会产生影响。)
所以我的问题是:我怎样才能"链接"提交按钮将表单发送到服务器,然后通过jQuery显示一个允许的成功警报,该警报将适合col-md-4?
答案 0 :(得分:2)
当你向任何其他页面(form-submit.php)提交任何页面(form.php)时,会发生什么..使用header函数通过URL传递给form.php中的form.php ..使用get方法选择消息..
<?
if($_GET['submitted'])
{?>
<div class="alert alert-success" role="alert">
Form Submitted Successfully
</div>
<?}?>
<form ... action='form-submit.php'>
.
.
</form>
// All submission query..
// at the end, after performing all necessary actions.. need to come to form.php page.. so we will use header("");
header("location:form.php?submitted=successfully");
答案 1 :(得分:1)
这是一种简化的方法,可以在Bootstrap模式中完成。我们在这里所做的就是检查表单是否已经通过jQuery提交,然后以模态显示消息。
Here's how to incorporate that with PHP
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="messages" class="hide" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<div id="messages_content"></div>
</div>
<form id="form" method="post">
<button class="btn btn-default" type="submit">Submit</button>
</form>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script>
$('#form').submit(function(e) {
$('#messages').removeClass('hide').addClass('alert alert-success alert-dismissible').slideDown().show();
$('#messages_content').html('<h4>MESSAGE HERE</h4>');
$('#modal').modal('show');
e.preventDefault();
});
</script>
</body>
</html>