gpt4 book ai didi

JavaScript 加载新页面问题

转载 作者:行者123 更新时间:2023-11-29 20:23:23 25 4
gpt4 key购买 nike

我想要做的是,如果用户填写表单,它将提供对新位置的访问权限。

<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;
}

我知道这部分是错误的,但我不知道该怎么做。任何帮助都会很好..

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

最佳答案

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

相当于使用

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

两者都可以,所以请选择您喜欢的一个。

关于JavaScript 加载新页面问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2661294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com