和registration.php
<head>
<script>
function myFunction() {
var userName=document.getElementById('fname').value;
var userLastName=document.getElementById('lname').value;
var userEmail=document.getElementById('email').value;
var userContact=document.getElementById('contact').value;
//alert(userContact);
var phoneno = /^\d{10}$/;
var letters=/^[A-Za-z]+$/;
if (letters.test(userName)) {
}else{
// swal("First Name contain only letters and whitespaces");
swal({
title: "Error!",
text: "First Name contain only letters and whitespaces",
type: "error",
confirmButtonText: "OK"
})
exit;
}
if (letters.test(userLastName)) {
}else{
//alert("Last name contains only letters and whitespaces");
swal({
title:"Error!",
text:"Last name contains only letters and whitespaces",
type:"error",
confirmButtonText:"OK"
})
exit;
}
if (phoneno.test(userContact)) {
}else{
//alert(" contact number is of 10 digit");
swal({
title:"Error!",
text:"contact number is of 10 digit",
type:"error",
confirmButtonText: "OK"
})
exit;
}
///alert("succes");
//swal({
// title:"Congratulation!",
// text:"You are successfully Registreared.",
// type:"success",
// confirmButtonText: "OK",
// })
swal('Congratulations!','Your are successfully Register','success');
}
</script>
</head>
<body>
<div id='Registration'>
<form action='Insert.php' method='post'>
<table id='myTable'>
<tr>
<td id='tableName' colspan='2' style='text-align: center'>Registration</td>
</tr>
<tr>
<td>First Name: </td>
<td><input type='text' id='fname' name='fname' required></td>
</tr>
<tr>
<td>Last Name:</td>
<td><input type='text' id='lname' name='lname' required></td>
</tr>
<tr>
<td>Email:</td>
<td><input type='email' id='email' name='email' required></td>
</tr>
<tr>
<td>Contact:</td>
<td><input type='text' id='contact' name='contact' required></td>
</tr>
<tr>
<td colspan='2' style='text-align: center'><input type='submit' id='submit' value='SUBMIT' name='submit' onclick='myFunction()'></td>
</tr>
</table>
</form>
</div>
<body>
这是我的sweetAlert功能,可以正常使用错误,但是为了成功,它无法正常工作。为了成功,它不能等待来自sweetAlert的回应。他们在表格行动中的任何问题=&#39; insert.php&#39;方法=&#39;后&#39 ;?
请给我适当的解决方案吗?
答案 0 :(得分:0)
php没有任何内容。
这是表单提交的正常流程。执行onclick
处理程序的最后一行后,浏览器开始将表单发送到服务器。任何本地浏览器对话框(如alert
)都可以暂停此过程,但没有任何自定义js警报。如果您想等到用户关闭警报,那么您应该阻止表单提交并手动提交。
要阻止表单提交(默认行为),您应该return false
处理程序onclick
- 可能的方法之一。
要手动提交表单,请使用form.submit()
方法
sval
函数的第二个参数添加将在用户关闭成功对话框后执行的回调 - http://t4t5.github.io/sweetalert/ 因此结果代码可能如下所示:http://jsfiddle.net/7Ld8L6y5/
function myFunction() {
var userName=document.getElementById('fname').value;
var userLastName=document.getElementById('lname').value;
var userEmail=document.getElementById('email').value;
var userContact=document.getElementById('contact').value;
var form = document.getElementById('myForm');
var onDialogClose = function () {
console.log(form);
form.submit();
};
var phoneno = /^\d{10}$/;
var letters=/^[A-Za-z]+$/;
if (!letters.test(userName)) {
swal({
title: "Error!",
text: "First Name contain only letters and whitespaces",
type: "error",
confirmButtonText: "OK"
});
return;
}
if (!letters.test(userLastName)) {
swal({
title:"Error!",
text:"Last name contains only letters and whitespaces",
type:"error",
confirmButtonText:"OK"
});
return;
}
if (!phoneno.test(userContact)) {
swal({
title:"Error!",
text:"contact number is of 10 digit",
type:"error",
confirmButtonText: "OK"
})
return;
}
swal({
title: 'Congratulations',
text: 'Your are successfully Register',
type: 'success'
}, onDialogClose);
}
您还需要更新您的html代码:
onclick
按钮的submit
事件处理程序以防止默认行为 - onclick='myFunction(); return false;'
submit
按钮重命名为smth。像send
一样可以调用默认的form.submit
方法。否则form.submit
会引用您的按钮 - <input type='submit' id='send' value='SUBMIT' name='send' onclick='myFunction(); return false;'>
此外,您的原始脚本包含错误:javascript
没有内置exit
功能。要跳过执行其余功能代码并立即返回控件 - 请使用return false;
语句。