gpt4 book ai didi

javascript - HTML 表单输入

转载 作者:行者123 更新时间:2023-11-28 18:08:43 24 4
gpt4 key购买 nike

我有这个 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();" />

我做错了什么?

最佳答案

<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>

注意右括号。

关于javascript - HTML 表单输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42080467/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com