本文介绍了Javascipt将textbox1的键入文本打印到textbox2的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好,我需要javacript才能在用户在textbox1中输入文本时自动键入单词,它应该在textbox2中自动显示.谁能给我Javascript
Hi all i need javacript for typing the word automatically when user enter a text in textbox1 it should display automatically in textbox2. Can any one give me the Javascript
推荐答案
<script type="text/javascript">
function sync()
{
var n1 = document.getElementById('TextBox1');
var n2 = document.getElementById('TextBox2');
n2.value = n1.value;
}
</script>
<script type="text/javascript">
function myValue(t1) {
document.getElementById("<%=t2.ClientID %>").value = t1.value;
}
</script>
将代码放入Body
Put the code in Body
<input id="t1" type="text" runat="server" onkeypress="javascript:myValue(this)" />
<input id="t2" type="text" name="name" runat="server" value="" />
希望对您有帮助.
I hope this helps you well.
这篇关于Javascipt将textbox1的键入文本打印到textbox2的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!