Cita:
Iniciado por emprear Ahora estoy dudando de que quieras pasar un valor de javascript al marco inferior.
el form admite el atributo target, en el cual podés especificar el frame(iframe) de destino. Para vaciar el campo usas reset();
Código HTML:
Ver original<form action="proceso.php" target="abajo" onsubmit="this.reset();"> <input type="text" id="c" /> <input type="submit" value="procesar" />
El código del post previo obvialo si es esta la situación
Saludos
claro emprear acertaste jeje , no queria pasar un valor.... actualmente te dejare lo que hize segun tus modificaciones ( dejare el formulario tal cual ) :
Código HTML:
<form id="form3" name="form3" method="post" action="group.php" target="DownFrame" onsubmit="this.reset();">
<table width="776" border="1" cellspacing="0">
<tr>
<th width="200" height="45"> Codigo de Barra<br />
<input type="text" name="codbarr" id="codbarr" /></th>
<th width="269"><label for="estado">Estado<br />
</label>
<select name="estado" id="estado" class="comboBox" onChange="return comboBox();">
<?
$queryEstado="SELECT descripcion FROM TB_Estado_Prov";
$resultado=mssql_query($queryEstado);
while($descripcion=mssql_fetch_array($resultado)){
echo'<OPTION VALUE="'.$descripcion['descripcion'].'">'.$descripcion['descripcion'].'</OPTION>';
}
?>
</select></th>
<th width="420"><div id="mot_obj" style="display:none" >
<label for="mot_obj">Motivo Objecion</label><br />
<select name="mot_obj" id="mot_obj" class="comboBox">
<?
$queryMotivo="SELECT descripcion FROM TB_motivoObjecion_Prov";
$resultado2=mssql_query($queryMotivo);
while($descripcion2=mssql_fetch_array($resultado2)){
echo'<OPTION VALUE="'.$descripcion2['descripcion'].'">'.$descripcion2['descripcion'].'</OPTION>';
}
?>
</select>
<input type="submit" name="ingresar" id="ingresar" value="Ingresar"/>
</div></th>
<tr>
</table>
</form>
el punto es que al hacer esto se me reinicia el formulario (que es lo que necesito), pero no me ejecuta el formulario de abajo (group.php), para dejar un poco mas claro.. dejare aqui lo que contiene el group.php :
Group.php :
Código PHP:
<!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>Descarga de Ticket</title>
<body>
<div id="apDiv1">
<form name="fo" method="post" action="delete.php" target="DownFrame">
<fieldset><legend class="ss">Lista de clientes</legend>
<?
if($estado<>"OBJETADO-VALIJA")
{
if($_SESSION['codigoBarra']==$codDoc && $idMensajero==$idmjs) // COMPARACION CON OTDOCUMENTOS
{
if($_SESSION['codigoBarra']!=$codDocTemp) // COMPARACION CON TB_TEMPORAL
{
$sqlInsert="insert into Temporal(CodigoDocumento,NumeroOt,Destinatario,Direccion,Comuna,EstadoDocumento,Receptor,Fecha,Hora,IdMensajero,MotivoObjecion)
values ('".$codDoc."','".$numOt."','".$destinatario."','".$direccion."','".$comuna."','".$estado."','".$receptor."','".$fecha."','".$hora."',
'".$idMensajero."','')";
$exec=mssql_query($sqlInsert,$conexion);
}
else
{
?>
<script language="javascript">
alert ("El codigo ya ha sido ingresado con anterioridad");
</script>
<?
}
}
else
{
?>
<script language="javascript">
alert ("El codigo no Existe");
</script>
<?
}
}
}
if($estado=="OBJETADO-VALIJA")
{
$sqlInsert2="insert into Temporal(CodigoDocumento,NumeroOt,Destinatario,Direccion,Comuna,EstadoDocumento,Receptor,Fecha,Hora,IdMensajero,MotivoObjecion)
values ('".$codDoc."','".$numOt."','".$destinatario."','".$direccion."','".$comuna."','".$estado."','".$receptor."','".$fecha."','".$hora."',
'".$idMensajero."','".$motivoObjecion."')";
$exec=mssql_query($sqlInsert2,$conexion);
}
?>
</body>
</html>