我正在制作一个计算器只是为了学习Javascript(我非常了解HTML和CSS)并且我有计算器的基础。我想让它只是使用按钮。按钮工作和所有。但是,例如,如果我想插入11,那是不可能的,因为我只能插入单个数字,我不知道为什么:( 这是您按下以插入数字1的按钮。
<button type="button" onclick="no1 ()">1</button>
这是将数字1插入输入标记的javascript:
var currentinput= document.getElementById("firstnumber");
var answer= document.getElementById("answer");
function no1 ()
{
currentinput.value=1;
answer.value=1;
}
我如何才能插入11而不只是1?
答案 0 :(得分:0)
如果你想在变量的末尾添加一些东西,你可以使用这样的东西:
function no1 ()
{
currentinput.value = currentinput.value+"1";
answer.value=1;
}
这将获取currentinput.value中的数字,并在最后添加1。