gpt4 book ai didi

Javascript填充输入值

转载 作者:行者123 更新时间:2023-12-03 05:28:50 24 4
gpt4 key购买 nike

我有一个 HTML 文本字段,其中的值是预定义的,例如“你好”。

现在,我在网站上手动将值从“hello”更改为“bye”。当我单击一个按钮时,再次调用同一站点,我的输入类型值现在应该是“再见”而不是“你好”。在这里你可以看到我的代码:

<form method="POST" id="ReloadPage" name="ReloadPage" action="MyWebsite" onsubmit="getValue();">  
<strong>word: </strong>
<input id="word" type="text" size="30" value="hello" name="WORD" />

<script type="text/javascript">
function getValue() {
document.getElementById("word").value="bye";
}
</script>

但不知何故,该值将始终为 hello 而不会更改为 bye。非常感谢您的帮助。

最佳答案

您不能使用function作为 function 的名称.更改您的姓名function

<form method="POST" id="ReloadPage" name="ReloadPage" action="MyWebsite" onsubmit="return GetValue();">  
<strong>word: </strong>
<input id="word" type="text" size="30" value="hello" name="WORD" />

function GetValue() {
document.getElementById("word").value="bye";
return false;
}

此外,当您 submit form页面将reload所以它会显示initial value再次。

关于Javascript填充输入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41039941/

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