最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

JavaScript Load New Page Question - Stack Overflow

programmeradmin0浏览0评论

What I am looking to do is if a user plete a form it will provide access to a new location.

<script language="JavaScript" type="text/javascript">     
<!--     
function validateForm(theForm) {     
 var firstname = theForm.firstname.value; 
 var lastname = theForm.lastname.value;      
 var email = theForm.email.value;     
 if (firstname == "") {     
   alert("Please fill in your First Name.");     
   theForm.firstname.focus();     
   return false;     
 }   
 if (lastname == "") {     
   alert("Please fill in your Last Name.");     
   theForm.lastname.focus();     
   return false;     
 } 

 if (email == "") {     
   alert("Please fill in your email address.");     
   theForm.email.focus();     
   return false;     
 }     
 return true;     
}

I know this part is wrong but I have no idea how to go about doing it. any help would be nice..

 if lastname=""
 if firstname=""
 if email=""
 load('www.google');

What I am looking to do is if a user plete a form it will provide access to a new location.

<script language="JavaScript" type="text/javascript">     
<!--     
function validateForm(theForm) {     
 var firstname = theForm.firstname.value; 
 var lastname = theForm.lastname.value;      
 var email = theForm.email.value;     
 if (firstname == "") {     
   alert("Please fill in your First Name.");     
   theForm.firstname.focus();     
   return false;     
 }   
 if (lastname == "") {     
   alert("Please fill in your Last Name.");     
   theForm.lastname.focus();     
   return false;     
 } 

 if (email == "") {     
   alert("Please fill in your email address.");     
   theForm.email.focus();     
   return false;     
 }     
 return true;     
}

I know this part is wrong but I have no idea how to go about doing it. any help would be nice..

 if lastname=""
 if firstname=""
 if email=""
 load('www.google.');
Share Improve this question asked Apr 18, 2010 at 6:02 MichaelMichael 3314 gold badges6 silver badges17 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 3
if (validateForm(theForm)) window.location = 'http://www.google.';

Is equivalent to using

if (validateForm(theForm)) window.location.href = 'http://www.google.';

Both will work, so choose which one you prefer.

if lastname=""
if firstname=""
if email=""
load('www.google.');

bees

if ((lastname == "") && (firstname == "") && (email == "")) {
    window.location = "http://www.google.";
}
发布评论

评论列表(0)

  1. 暂无评论