HTML表单输入

时间:2017-02-07 02:04:04

标签: javascript html forms getelementbyid

我有这个javascript代码:

function othername() {
    var input = document.getElementById("formName".value);
    alert('Thanks for filling that out,' + ' ' +  input + '!') 
}

这个HTML代码:

<form id="form" onsubmit="return false;">
<input type="text" id="formName"/>
<input type="submit" onclick="othername();" />

我做错了什么?

1 个答案:

答案 0 :(得分:3)

&#13;
&#13;
<form id="form" onsubmit="return false;">
		<input type="text" id="formName"/>
		<input type="submit" onclick="othername();" />
</form>
<script>
	function othername() {
		var input = document.getElementById("formName").value;
		alert('Thanks for filling that out, ' + input + '!') 
	}
</script>
&#13;
&#13;
&#13;

注意结束。