Html 页面未加载 (Javascript)
Html page does not load (Javascript)
我一直在尝试将页面从一个登录页面切换到另一个。它似乎没有加载或者我做错了什么?
码笔的link:https://codepen.io/batajusasmit/pen/OJVyGEW
这是我的代码。
function validate() {
var username = document.getElementById('username').value;
var password = document.getElementById('password').value;
if (username == 'admin' && password == 'admin') {
alert('login successful!');
window.location = 'link.html';
return false;
}
}
您必须在同一页面停止提交,然后转到新位置
您在按钮 onclick
中使用了 validate()
功能。但是你应该使用 return validate()
这将 return 布尔值来阻止表单提交
function validate() {
var username = document.getElementById('username').value;
var password = document.getElementById('password').value;
if (username == 'admin' && password == 'admin') {
alert('login successful!');
window.location = '/'; //change with your location
return false;
}
}
<div class="container">
<form>
<h1 id="form">Login!</h1>
<div class="login">
<label class="name">username:</label>
<input id="username" class="username" type="text" placeholder="name...">
<label class="pass">password:</label>
<input id="password" class="password" type="password" placeholder="password...">
</div>
<div class="submit">
<button id="submit" class="btn btn-primary" onclick="return validate()">Submit</button>
</div>
</form>
</div>
我想通了。我只需要反斜杠。
window.location.href = '/link.html';
我一直在尝试将页面从一个登录页面切换到另一个。它似乎没有加载或者我做错了什么?
码笔的link:https://codepen.io/batajusasmit/pen/OJVyGEW
这是我的代码。
function validate() {
var username = document.getElementById('username').value;
var password = document.getElementById('password').value;
if (username == 'admin' && password == 'admin') {
alert('login successful!');
window.location = 'link.html';
return false;
}
}
您必须在同一页面停止提交,然后转到新位置
您在按钮 onclick
中使用了 validate()
功能。但是你应该使用 return validate()
这将 return 布尔值来阻止表单提交
function validate() {
var username = document.getElementById('username').value;
var password = document.getElementById('password').value;
if (username == 'admin' && password == 'admin') {
alert('login successful!');
window.location = '/'; //change with your location
return false;
}
}
<div class="container">
<form>
<h1 id="form">Login!</h1>
<div class="login">
<label class="name">username:</label>
<input id="username" class="username" type="text" placeholder="name...">
<label class="pass">password:</label>
<input id="password" class="password" type="password" placeholder="password...">
</div>
<div class="submit">
<button id="submit" class="btn btn-primary" onclick="return validate()">Submit</button>
</div>
</form>
</div>
我想通了。我只需要反斜杠。
window.location.href = '/link.html';