⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 js_form_validation.asp@output=print

📁 W3Schools tutorial..web designing
💻 ASP@OUTPUT=PRINT
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JavaScript Form Validation</title>
 
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Keywords" content="xml,tutorial,html,dhtml,css,xsl,xhtml,javascript,asp,ado,vbscript,dom,sql,colors,soap,php,authoring,programming,training,learning,beginner's guide,primer,lessons,school,howto,reference,examples,samples,source code,tags,demos,tips,links,FAQ,tag list,forms,frames,color table,w3c,cascading style sheets,active server pages,dynamic html,internet,database,development,Web building,Webmaster,html guide" />

<meta name="Description" content="Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building." />

<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "../../https@ssl./default.htm" : "../../www./default.htm");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3855518-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>

</head>
<body>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

<h1>JavaScript Form Validation</h1><a href="js_cookies.asp"><img alt="previous" border="0" src="../images/btn_previous.gif" width="100" height="20" /></a>
<a href="js_animation.asp"><img alt="next" border="0" src="../images/btn_next.gif" width="100" height="20" /></a>
<hr />
<p class="intro">JavaScript can be used to validate input data in HTML forms before 
sending off the content to a server.</p>
<hr />

<h2>JavaScript Form Validation</h2>
<p>JavaScript can be used to validate input data in HTML forms before sending off the 
content to a server.</p>
<p>Form data that typically are checked by a JavaScript could be:</p>
<ul>
	<li>has the user left required fields empty?</li>
	<li>has the user entered a valid e-mail address?</li>
	<li>has the user entered a valid date?</li>
	<li>has the user entered text in a numeric field?</li>
</ul>
<hr />

<h2>Required Fields</h2>
<p>The function below checks if a required field has been left empty. If the 
required field is blank, an alert box alerts a message and the function returns 
false. If a value is entered, the function returns true 
(means that data is OK):</p>
<table class="ex" cellspacing="0" border="1" width="100%" id="table7"><tr><td>
<pre>function validate_required(field,alerttxt)
{
with (field)
{
  if (value==null||value==&quot;&quot;)
  {
  alert(alerttxt);return false;
  }
  else
  {
  return true;
  }
}
}</pre>
</td></tr></table>
<p>The entire script, with the HTML form could look something like this:</p>
<table class="ex" cellspacing="0" border="1" width="100%" id="table8"><tr><td>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function validate_required(field,alerttxt)
{
with (field)
{
if (value==null||value==&quot;&quot;)
  {alert(alerttxt);return false;}
else {return true}
}
}</pre>
<pre>function validate_form(thisform)
{
with (thisform)
{
if (validate_required(email,&quot;Email must be filled out!&quot;)==false)
  {email.focus();return false;}
}
}
&lt;/script&gt;
&lt;/head&gt;</pre>
<pre>&lt;body&gt;
&lt;form action=&quot;submitpage.htm&quot;
onsubmit=&quot;return validate_form(this)&quot;
method=&quot;post&quot;&gt;
Email: &lt;input type=&quot;text&quot; name=&quot;email&quot; size=&quot;30&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit&quot;&gt; 
&lt;/form&gt;
&lt;/body&gt;</pre>
<pre>&lt;/html&gt;</pre>
</td></tr></table>
<br />
<hr />

<h2>E-mail Validation</h2>
<p>The function below checks if the content has the general syntax of an email.</p>
<p>This means that the input data must contain at least an @ sign and a dot (.). 
Also, the @ must not be the first character of the email address, and the last 
dot must at least be one character after the @ sign:</p>
<table class="ex" cellspacing="0" border="1" width="100%" id="table1"><tr><td>
<pre>function validate_email(field,alerttxt)
{
with (field)
{
apos=value.indexOf(&quot;@&quot;);
dotpos=value.lastIndexOf(&quot;.&quot;);
if (apos&lt;1||dotpos-apos&lt;2) 
  {alert(alerttxt);return false;}
else {return true;}
}
}</pre>
</td></tr></table>
<p>The entire script, with the HTML form could look something like this:</p>
<table class="ex" cellspacing="0" border="1" width="100%" id="table2"><tr><td>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function validate_email(field,alerttxt)
{
with (field)
{
apos=value.indexOf(&quot;@&quot;);
dotpos=value.lastIndexOf(&quot;.&quot;);
if (apos&lt;1||dotpos-apos&lt;2) 
  {alert(alerttxt);return false;}
else {return true;}
}
}</pre>
<pre>function validate_form(thisform)
{
with (thisform)
{
if (validate_email(email,&quot;Not a valid e-mail address!&quot;)==false)
  {email.focus();return false;}
}
}
&lt;/script&gt;
&lt;/head&gt;</pre>
<pre>&lt;body&gt;
&lt;form action=&quot;submitpage.htm&quot;
onsubmit=&quot;return validate_form(this);&quot;
method=&quot;post&quot;&gt;
Email: &lt;input type=&quot;text&quot; name=&quot;email&quot; size=&quot;30&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit&quot;&gt; 
&lt;/form&gt;
&lt;/body&gt;</pre>
<pre>&lt;/html&gt;</pre>
</td></tr></table>
<br />
<hr />
<a href="js_cookies.asp"><img alt="previous" border="0" src="../images/btn_previous.gif" width="100" height="20" /></a>
<a href="js_animation.asp"><img alt="next" border="0" src="../images/btn_next.gif" width="100" height="20" /></a>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -