07/04/2008, 02:59
|
| | Fecha de Ingreso: abril-2008
Mensajes: 31
Antigüedad: 16 años, 7 meses Puntos: 1 | |
Re: Espero tener suerte hoy ... Sería algo así:
Código:
<html>
<head>
<script type="text/javascript">
function f_open( p_url )
{
var l_feat = "location=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes";
var l_url = p_url + document.forms[0].valor.value;
window.open( l_url, "", l_feat );
}
</script>
</head>
<body>
<form>
<input type="text" name="valor" id="valor" size="4" maxlength="4" value="45"/>
</form>
<a href="javascript:f_open( 'per_pedidos.asp?codigo=3&valor=' );">test</a>
</body>
</html>
|