两个文本框,第一个输入,第二个同步显示
Posted Xander
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个文本框,第一个输入,第二个同步显示相关的知识,希望对你有一定的参考价值。
<!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=gb2312" />
<title>Untitled Document</title>
<script type="text/javascript">
function showcontent(){
document.getElementById("second").value=document.getElementById("first").value;
}
</script>
</head>
<body>
<input type="text" name="first" id="first" onkeydown="showcontent()" />
<input type="text" name="second" id="second" />
</body>
</html>
但好似会少显示一个字符。必须使用onkeyUP事件
以上是关于两个文本框,第一个输入,第二个同步显示的主要内容,如果未能解决你的问题,请参考以下文章
javascript怎么输入第一个文本框中的数字按钮一下,从第二个文本框内输出代码实现
Android WebView 文本框确认密码第二个获取焦点后设置不能自动放大