Java no es JavaScript, solo se parecen en el nombre.
Ahí te dejo un ejemplo con el nombre... si lo terminas tendrás una suerte de formulario oculto.... que actualiza el texto visible y se puede mandar....
Si no te gustan las tablas lo siento....
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"> <bgsound src="../Sonidos/Speech Off.wav" loop="l" balance="b" volume="v"></bgsound>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script language="JavaScript" type="text/JavaScript"> function amaga(id,num){
if(num=="1"){
document.getElementById(id+"1").style.display="none";
document.getElementById(id+"2").style.display="";
document.getElementById(id).value=document.getElementById(id+"0").innerHTML;
}else{
document.getElementById(id+"2").style.display="none";
document.getElementById(id+"1").style.display="";
document.getElementById(id+"0").innerHTML=document.getElementById(id).value;
}
}
<body style="background-color: transparent;"> <div align="center"><form method="GET" name="checkForm" action=""> <table width="669" border="0"> <table width="668" height="115" border="0" cellpadding="0" cellspacing="1"> <td width="170"><div align="left"><font face="Monotype Corsiva" size="+2">Nombre
</font></div></td> <td colspan="4" align="left"><font face='Monotype Corsiva' size='+1'><table width="100%" border="0" cellspacing="0" cellpadding="0"> <td><span onclick="amaga('nombre',1)" id="nombre0">Hallking
</span></td> </tr><tr id='nombre2' style='display:none'> <td><input name="nombre" type="text" id="nombre" value="Hallking" onblur="amaga('nombre',2)" /></td> <td><div align="left"><font face="Monotype Corsiva" size="+2">Apellido
</font></div></td> <td colspan="4" align="left"><font face='Monotype Corsiva' size='+1'>Quesada Median
</font></td> <td><font face="Monotype Corsiva" size="+2">Telefono
</font></td> <td width="157"><font size="+1" face="Monotype Corsiva">809-888-8888
</font></td> <td width="167"><font size="+1" face="Monotype Corsiva">809-888-8888
</font></td> <td colspan="2"><font size="+1">809-888-8888
</font> </td> <td><font face="Monotype Corsiva" size="+2">Tipo
</font></td> <td colspan="2">Trabajo
</td> <td><font face="Monotype Corsiva" size="+2">Coreo Electronico
</font></td> <td><font face="Monotype Corsiva" size="+2">Direcci
ón
</font></td> <td colspan="2"><font size="+1" face="Monotype Corsiva">calla no me acuerdo
</font></td> <td width="80"><input type="submit" name="button4" value="Guardar C" /></td> <td width="66"><input type="reset" name="button3" value="Borar" /></td>
Por cierto solo tienes que reproducir, con un poco de logica, lo que he hecho en el html el script no tienes por que tocarlo...
Quim