81,122
社区成员




<script type="text/javascript">
function chan(){
document.getElementById('id2').value = document.getElementById('id1').value;
}
</script>
</head>
<body>
<input type="text" id="id1" onkeyup="chan()">
<input type="text" id="id2">
</body>