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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link href="style/opineo.css" rel="stylesheet" type="text/css" /> </head> <body> <center> <table width="100%" align="center"> <form id="addtransp" action="addTransport" name="addtrans" method="post"> <tr> <td> </td> <td> <select id="typetrans" onchange="muestro()"> </select> </td> </tr> <tr> <td> </td> </tr> <tr> </tr> <tr> </tr> <tr> </td> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </form> </table> </center> </body> </html>
Código Javascript:
Ver original
function muestro() { if(document.getElementById("bus").value=="Bus") { document.getElementById("atr").innerHTML=="Station:" } if(document.getElementById("air").value=="Air") { document.getElementById("atr").innerHTML=="Airport name:"; } if(document.getElementById("car").value=="Car") { document.getElementById("atr").innerHTML=="Model:"; } if(document.getElementById("train").value=="Train") { document.getElementById("atr").innerHTML=="Station:"; } if(document.getElementById("bike").value=="Bike") { document.getElementById("atr").innerHTML=="Model:"; } }