<html>
<head>
<script>
var count = 1;
var countEl = document.getElementById("count");
function plus(){
count++;
countEl.value = count;
}
function minus(){
if (count > 1) {
count--;
countEl.value = count;
}
}
</script>
</head>
<body>
<div >
<button type="button">
<i onclick="minus()"></i></button>
<input type="text" id="count" value="1" >
<button type="button">
<i onclick="plus()"></i></button>
</div>
</body>
</html>
问题是按加号按钮和减号按钮都没有反应。
还有js里提示不能用value 我不知道该怎么办?