我有以下代码:JS Fiddle
<html>
<head>
<script>
function increase(){
var a = 1;
var textBox = document.getElementById("text");
textBox.value = a;
a++;
}
</script>
</head>
<body>
<button type="button" onclick="increase()">show</button>
<input type="text" id="text">
</body>
</html>
我想做的是:
- 单击按钮时,“a”的值将显示在文本框中,并且“a”将递增。
- 现在再次单击时,应显示增加的值,但这不会发生。
我哪里错了?