我一直在尝试使用文本框和按钮制作登录系统。您应该在文本框中输入密码,然后按下按钮,但是当我这样做时没有任何反应。到目前为止,这是我的代码:
<html>
<body>
<script type="text/javascript">
function EnterPwerd() {
var pass= input = document.getElementById("text")
if ( (pass=='bacon') ) {
document.write("BACON is so good.")
}
else {
document.write("You put the wrong password you taco biscuit!")
}
</script>
<div id="text"><input type="text" value="" size="10" maxlength="15"></civ>
<input type="button" value="Enter" onClick="EnterPwerd()">
</body>
</html>