我对 javascript 很陌生,所以如果这看起来很简单,请原谅我。我想要做的是让输入框的值为'hello',当单击 submit_a 时,但它没有发生。
<script type="text/javascript">
var Text = 'hello'.
function setInput(button) {
var buttonVal = button.value,
textbox = document.getElementById('input_' + buttonVal);
textbox.value = Text ;
}
</script>
<html>
<input type="submit" name="submit_a" value="click-me" onclick="setInput(this); return
false;">
<input type="text" name="a" id="input_a">
</html>