我想自动将数据从一个文本框复制到html中的另一个文本,即,当我编辑第一个文本框时,第二个文本框应自发地反射(reflect)相同的内容

最佳答案

在onkeypresss上调用javascript函数

function copy_data(val){
 var a = document.getElementById(val.id).value
 document.getElementById("copy_to").value=a
}

编辑使用onkeyup或onblur代替
<html>
<head>
    <script>
    function copy_data(val){
     var a = document.getElementById(val.id).value
     document.getElementById("copy_to").value=a
    }
    </script>
</head>
<body>
<input type="text" name ="a" id="copy_from" onkeyup="copy_data(this)"/>
<input type="text" name ="a" id="copy_to"/>
</body>
</html>

07-24 17:22