function CopyTxt(){
var txt = document.getElementById('id1').value
document.getElementById('id2').value = txt
document.getElementById('id3').value = txt
}
CopyTxt() - вешается на keyup например так:
<form name="1">
<input name="1" id="id1" type="text" onkeyup="CopyTxt()" />
</form>
<form name="2">
<input name="2" id="id2" type="text" />
</form>
<form name="3">
<input name="3" id="id3" type="text" />
</form>
PS:
Цитата:
|
можно ведь реализовать это с помощью Java?
|
Как это реализовать с помощью Java я не знаю, но c помощью javascript смотри выше.