มีความรู้น้องเรื่อง Function ลองเอาการเช็กค่าว่า และ email ไว้ใน function (ผิดแน่ๆ) รบกวนแนะนำด้วยค่ะ Code (JavaScript)
function validateForm()
{
// Check First Name
{
var x = document.forms["myForm"]["name"].value;
if (x == null || x == "") {
alert("First name must be filled out");
return false;
}
}
// Check email
{
var emailFilter=/^.+@.+\..{2,3}$/;
var str=document.form.email.value;
if (!(emailFilter.test(str))) {
alert ("email ?");
return false;
}
return true;
}
}