验证后无法通过我的提交按钮路由到此html页面... 罪魁祸首----------------->返回true; window.location.href =“Info / index.html”;
function validate()
{
if( document.myLogIn.user_id.value == "" )
{
alert( "Please provide your Customer ID!" );
document.myLogIn.user_id.focus() ;
return false;
}
if( document.myLogIn.password.value == "" )
{
alert( "Please provide your Password!" );
document.myLogIn.password.focus() ;
return false;
}
return true; window.location.href= "Info/index.html";
}
答案 0 :(得分:1)
原因:代码无法访问。
在您的代码中:
window.location.href= "Info/index.html";
由于您已经设置了“退货”,因此不会被执行。言。
不知道你到底在做什么,但你可以这样设置你的代码:
window.location.href= "Info/index.html";
return true;
因此,在将返回值设置为true之前,将执行重定向。
祝你好运!