JAVASCRIPT
<script type="text/javascript">
function addnumber(element){
document.getElementById(`mvar`).value = document.getElementById(`mvar`).value+element.value;
}
</script>
HTML
<form action="" method="" name="vform">
<input id=mvar type="text" value="" name="mvar"/><br/>
<input type="button" class="fbutton" name="1" value="1" id="1" onClick=addNumber(this);/>
<input type="button" class="fbutton" name="2" value="2" id="2" onClick=addNumber(this);/>
<input type="button" class="fbutton" name="3" value="3" id="3" onClick=addNumber(this);/>
我错过了什么,或者我错过了什么?我
答案 0 :(得分:0)
请注意区分大小写的函数名称。此外,正如Pointy指出的那样(双关语),onClick
必须在引号中。
<script type="text/javascript">
function addNumber(element){
var myVar = document.getElementById('mvar');
myVar.value = myVar.value + element.value;
}
</script>
<form action="" method="" name="vform">
<input id="mvar" type="text" value="" name="mvar"/><br/>
<input type="button" class="fbutton" name="1" value="1" id="1" onClick="addNumber(this);" />
<input type="button" class="fbutton" name="2" value="2" id="2" onClick="addNumber(this);" />
<input type="button" class="fbutton" name="3" value="3" id="3" onClick="addNumber(this);" />