我有一個簡單的登錄頁面,我遇到了一些麻煩。當你輸入不正確的信息時,它只是運行一個警報,但我希望它添加一些CSS到使它們變紅的字段的背景。我將如何去編輯下面的代碼來做到這一點?出現錯誤時添加CSS
謝謝。
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Jeremy Blazé</title>
</head>
<body>
<div id="box">
<img src="logo.png" />
<form name="login">
<input type="text" name="userid" placeholder="Username" />
<input type="password" name="pswrd" placeholder="Password" />
<input type="submit" class="button" onclick="check(this.form)" placeholder="Password" value="Sign in" />
</form>
</div>
<script language="javascript">
function check(form) {
if(form.userid.value == "username" && form.pswrd.value == "password") {
window.open('dashboard/index.html')
}
else {
alert("Error Password or Username")
}
}
</script>
</body>
</html>
這只是一個玩具例子或沒有您的應用程序真的有硬編碼到JS用戶名和密碼? – 2013-05-04 10:26:18
@MartinSmith只是一個設計目的的例子:P – 2013-05-04 10:28:02