Uncaught SyntaxError:无效的正则表达式:缺少/,我缺少什么?

时间:2017-03-06 14:44:07

标签: javascript html

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);/>

我错过了什么,或者我错过了什么?我

1 个答案:

答案 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);" />