制作网页中,怎么能“将输入的内容自动添加到其他表单中”
发布网友
发布时间:2022-04-24 15:07
我来回答
共2个回答
热心网友
时间:2022-04-24 16:36
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>两个文本框同时输入</title>
</head>
<body>
<script language="vbscript">
<!--
sub test1_onkeyup
form2.test2.value=form2.test1.value
end sub
-->
</script>
<form name="form2" method="post" action="">
<input name="test1" onkeyup="">
<input name="test2" >
</form>
</body>
</html>
是这个吧。 嘻嘻 一楼用的是Java哈 我这个是vb看楼主喜好了。嘻嘻
热心网友
时间:2022-04-24 17:54
<html>
<head>
<META http-equiv=Content-Type content=text/html; charset=gb2312>
<title>将输入的内容自动添加到其他表单中</title>
</head>
<script type="text/javascript">
function ch(){
var inputValue = document.getElementById("input1").value;
document.getElementById("input2").value = inputValue;
document.getElementById("input3").value = inputValue;
document.getElementById("input4").value = inputValue;
}
</script>
<body>
<form method="post">
<table>
<tr>
<td>请输入内容:<input type="text" value="" size="20" id="input1" onKeyUp="ch()"/></td>
</tr>
<tr>
<td>显示输入内容:<input type="text" readonly value="" size="20" id="input2"/></td>
</tr>
<tr>
<td>显示输入内容:<input type="text" readonly value="" size="20" id="input3"/></td>
</tr>
<tr>
<td>显示输入内容:<input type="text" readonly value="" size="20" id="input4"/></td>
</tr>
</table>
</form>
</body>
</html>
把上面的代码复制下来试试,看看是不是这个效果