gpt4 book ai didi

javascript - window.location.href 不工作

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

这是我的脚本:

<script type="text/javascript">
$(document).ready(function(){
$("#login").click(function(){
var user = $('#userID').val();
var pass = $('#password').val();
if (user === '' || pass === ''){
alert("Please Fill Required Fields");
}
else {
alert (user+" " +pass);
var x="<?php confirm();?>";
alert (x);
window.location.href = 'http://localhost/Annapoorna/Welcome_Page.php';
}
});
});
</script>

还有我的 HTML

<form class="login-form"> 
<input type="text" placeholder="username" name="userID" id="userID"/>
<input type="password" placeholder="password" id="password"/>
<button id="login" name="login" value="login">Login</button>
</form>

警报正常,但 window.location.href 未重定向到指定页面。为什么?

最佳答案

为什么不起作用

显示当前页面的href(URL):

document.getElementById("demo").innerHTML =
"Page location is " + window.location.href;

结果是:

Page location is http://www.yoururl.com/yourlocation


让它发挥作用

要重定向到另一个页面,您可以使用:

window.location="http://www.yoursite.com";

展开工作示例

function Redirect() {
window.location="http://www.yoursite.com";
}
    <html>
<head>

</head>

<body>
<p>Click the following button, you will be redirected to home page.</p>

<form>
<input type="button" value="Redirect Me" onclick="Redirect();" />
</form>

</body>
</html>

关于javascript - window.location.href 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37384284/

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