我想创建一个 value = "7" (string) 或 value = 7 (double) 的按钮。
我还想要一个文本框,当我单击所述按钮时,数字 7 或字符串“7”也应该写入该文本框中。
我的按钮:
<input type="button" name="btnSeven" id="btnSeven" value="7" onclick="setText7()" />
我的文本框:
<input type="text" name="textBox" id="textBox" value=""/>