JAVASCRIPTUncaught SyntaxError:無効な正規表現:missing /、私は何が欠けていますか?
<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);/>
私は何をしないのですか、どこ私は何かが足りないのですか? I
'のonClick = addNumber(この);'あなたは 'addNumber(この)の前後に引用符を追加する必要があります;'、今 '/'タグ近いのはの一部として理解されますonClick属性 – Aaron
バックチックのWhatsup? –
@Aaronの引用符は任意です –