用于更改HTML表单内输入文本的Javascript按钮事件

时间:2016-03-17 02:39:18

标签: javascript jquery html

这是一个.php文件,我尝试了几项工作,但我不熟悉javascript。当我在启用document.write的情况下运行它时,它会显示按钮的onclick事件正在运行。但无论出于何种原因,我找不到有关如何写入表单中的输入文本元素的任何信息。有谁知道这应该如何工作?我是否必须将按钮放在表单中?感谢。

<?php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<script type="text/javascript">
function setValue() {
    //document.write("122.0000");
    document.getElementById("someid").innerHTML="222.0000";
}
</script>
<center>
<button onclick="setValue()">Write value</button><br>
<center><form action="something.php" method="post" id ="inputForm">
Value: <input type="text" id="someid" /><br>
<input type="submit" />
</form>

1 个答案:

答案 0 :(得分:2)

更改

document.getElementById("someid").innerHTML="222.0000";

document.getElementById("someid").value="222.0000";

这会将文本输入的value设置为222.0000,而不是尝试更改innerHTML,这是开始和结束标记之间的内容(输入不存在) )。