<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<p>
<button>-</button>
<input type="text" value="1">
<button>+</button>
</p>
<p>
<button>-</button>
<input type="text" value="1">
<button>+</button>
</p>
<p>
<button>-</button>
<input type="text" value="1">
<button>+</button>
</p>
<p>
<button>-</button>
<input type="text" value="1">
<button>+</button>
</p>
<script>
//获取元素
var add=document.querySelectorAll('.add');//加法按钮
var subtraction=document.querySelectorAll('.subtraction');//减法按钮
var num=document.querySelectorAll('.num');//数量
var i;
//加法操作
for( i = 0; i < add.length; i++)
{
add[i].onclick=function()
{
num.value=num.value * 1 + 1;
}
}
//减法操作
for( i = 0; i < subtraction.length; i++)
{
subtraction[i].onclick=function()
{
num.value=num.value * 1 - 1;
}
}
</script>
</body>
</html>
堂堂堂堂糖糖糖童鞋
堂堂堂堂糖糖糖童鞋
相关分类