好的,所以我正在为登录类型的表单编写一个 javascript 代码,它将引导您进入一个新页面。这里是:
function submit1()
{
var x=document.getElementById("username");
var y=document.getElementById("password");
if (x.value=="username" && y.value=="password")
{
window.location="Example.php";
}
else
{
window.alert=("The information you have submitted is incorrect and needs to be submitted again!");
}
}
当我点击提交按钮时,它会将我直接带到页面而不是检查它是否正确。请帮忙!提前谢谢你!让您知道这不是永久登录页面!