嗨,我有简单的登录表单,其中字段由javascript验证。 我现在不知道为什么以下代码无效。
我的html和js代码:
<head>
<script type="text/javascript">
function handleLogin() {
var u = $("#username").val();
var p = $("#password").val();
if(u=="a" && p=="a")
{
window.location="/Site/site.html";
}
else
{
alert("Fail");
}
}
</script>
</head>
<li dojoType="dojox.mobile.ListItem">
<input dojoType="dojox.mobile.app.TextBox" placeHolder="username" type="text" id="username" name="username" />
</li>
<li dojoType="dojox.mobile.ListItem">
<input dojoType="dojox.mobile.app.TextBox" placeHolder="password" type="password" id="password" name="password" />
</li>
<li dojoType="dojox.mobile.ListItem">
<input dojoType="dojox.mobile.Button" onclick="handleLogin()" type="button" id="submit" name="submit" value="Login"/>
</li>
当我点击提交按钮时发生的事情。
谢谢
答案 0 :(得分:4)
您没有加载jQuery库。但你可以没有它:
var u = document.getElementById('username').value,
p = document.getElementById('password').value;
使用location.href
而不是window.location
更改页面:
location.href = '/Site/site.html';
答案 1 :(得分:1)
尝试导入
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>