所以我对JS比较陌生,决定练习一下。我想制作一个网页来选择你想要购买的产品数量,两个按钮分别为加号和减号。该程序应该在输入中添加1或取1取决于所留下的按钮。 image of webpage
这样工作正常,但后来我添加了一个if语句,以确保用户没有输入4张以上的门票或低于0张门票。这没有产生任何东西,并且在chrome上的开发人员工具中它只是闪烁错误但不保留它。任何帮助将不胜感激。
<!DOCTYPE html>
<html>
<head>
<style>
.myButton {
background-color:#44c767;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
padding:16px 31px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
background-color:#5cbf2a;
}
.myButton:active {
position:relative;
top:1px;
}
</style>
<script>
function plus(){
document.getElementById("htop").value=Number(document.getElementById("htop").value)+1;
}
function minus(){
document.getElementById("htop").value=Number(document.getElementById("htop").value)-1;
}
function validate(){
if(Number(document.getElementById("htop").value)<=0){
alert("You can not submit less than NULL tickets");
return false;
}
else if(Number(document.getElementById("htop").value)>4){
alert("you can not buy more than 4 tickets at once");
return false;
}
else{
alert("you may proceed");
return true;
}
}
</script>
</head>
<body >
<form>
<button id="plus" class="myButton" onclick="plus()">+</button>
<button id="minus" class="myButton" onclick="minus()">-</button>
<input type="text" id="htop" value="0" />
<br>
<input type="submit" value="Submit" onclick="validate()">
</form>
</body>
</html>
答案 0 :(得分:1)
我相信,在您尝试做的事情中,您不应该使用表单标签。尝试删除它们。
<body >
<button id="plus" class="myButton" onclick="plus()">+</button>
<button id="minus" class="myButton" onclick="minus()">-</button>
<input type="text" id="htop" value="0" />
<br>
<input type="submit" value="Submit" onclick="validate()">
</body>