Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>用按钮来控制数字的升降</title>
</head>
<body>
<center>
<form>
<input type=text name=amount value=5>
<input type=button value="上"
onClick="javascript:this.form.amount.value++;">
<input type=button value="下" onClick="javascript:this.form.amount.value--;">
</form>
</center>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx