我想显示在一个文本框中输入的数据反映在另一个文本框中
就像我在 TextBox1 上输入任何东西一样,我应该在 TextBox2 中输入(类似于反射)
这是我试过的..
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(".valueEnter").click(function () {
$('#message').html($('#textBox').val());
});
</script>
</head>
<body>
<div>
TextBox 1 : <input type="textbox" id="textBox" class="valueEnter"></input>
TextBox 2 : <input type="textbox" id="message"></input>
</div>
</body>
</html>