Toggle navigation
Inicio
Artículos
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Tutoriales
(current)
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Noticias
Foros
Eventos
Empleo
Inicio
Foros
Foros de Javascript
Link a pƔgina web con un Input button
×
Conéctate a Programacion.net
Conectarme a Programacion.net
Link a pƔgina web con un Input button
wosniak
28 de Diciembre del 2005
Nesecito que al hacer click en un boton (<INPUT type="button"...>) me dirija ha una pƔgina en html.
Como lo hago AYUDENME
Gracias......
dinokorn
28 de Diciembre del 2005
tienes que poner:
<input type="button" name="btn" value =" ir" onclick="pagina()"/>
y en un tag de java script haces la funcion pagina:
function pagina()
{
window.location.href = "tuotrapagina.html";
}