Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //<![CDATA[
function pasar(){
var tx1 = document.getElementById('tx1');
var tx2 = document.getElementById('tx2');
document.getElementById('tx3').value = tx1.value;
document.getElementById('tx4').value = tx2.value;
// si querés eliminar los valores de 1 y 2 al pasarloas a 3 y 4
tx1.value = ""
tx2.value = "";
}
//]]>
1.
<input type="text" value="" id="tx1" /> 3.
<input type="text" value="" id="tx3" /><br />2.
<input type="text" value="" id="tx2" /> 4.
<input type="text" value="" id="tx4" /><br /><br /><input type="button" value="pasar" onclick="pasar();" />
usar parseInt solo será necesario cunado recuperes los valores para usarlos en una operación aritmética posterior
Saludos