estoy intentando que al seleccionar un select se escriba un valor en un span.... lo estoy intentando hacer con la funcion onchange... pero aun logro que me funcione.... alguien me podria dar una mano? dejo mi codigo...
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" /> <link href="style/opineo.css" rel="stylesheet" type="text/css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="js/addtransp.js"></script>
<center>
<table width="100%" align="center">
<form id="addtransp" action="addTransport" name="addtrans" method="post">
<select id="typetrans" onchange="muestro()">
<td><div id="MiniView" style="width:500px"></div>
<td><input type="text" height="200" width="300" /></td>
<td><input type="submit" value="Add Transport" /></td>
</center>
Código Javascript
:
Ver originalfunction 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:";
}
}