Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/09/2012, 19:40
Avatar de flashmax
flashmax
 
Fecha de Ingreso: julio-2012
Ubicación: Bs.As. Argentina
Mensajes: 507
Antigüedad: 12 años, 4 meses
Puntos: 86
Respuesta: aparecer formulario con un boton

Hola te dejo un ejemplo..saludos!

Código HTML:
<!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" />
<title>Documento sin título</title>

<script language="JavaScript">

function muestra_oculta(id){
if (document.getElementById){
var el = document.getElementById(id);
el.style.display = (el.style.display == 'none') ? 'block' : 'none'; 
}
}
window.onload = function(){
muestra_oculta('contenido_a_mostrar');
}
</script>
</head>

<body>



<p><a style='cursor: pointer;' onClick="muestra_oculta('contenido_a_mostrar')" title="">boton</a></p>

<div id="contenido_a_mostrar">
<form action="" method="get">
<input name="" type="text">
<input name="" type="text">
<input name="Agregar usuario" type="button" value="Enviar">
</form>
</div>
</body>
</html> 
__________________
Saludos!
----------------------------------------------------------