Greetins,
亲爱的,我试图用jQuery做一些事情,但仍然没有用。我有一张表格
<form method="post" enctype="multipart/form-data" id="form1" >
Cliente: {HTML::select('cliente', $clientes, $cliente,"check(this);")}
<div id="oculto" visible="false" style="visibility:hidden;padding:30px 0px 20px 0px">
Rut: <input type = "text" name="rut" id="rut"/>
<input type = "text" name="digitov" id ="digitov" style="width:20px"/>
</div>
<input type="submit" value="Buscar" name= "buscar_registros" id="buscar_registros"/>
</form>
如果提交此表单,我需要从&#34; cliente&#34;获取值。然后,显示一个隐藏的div,我已经。
<div id="hidden" style="display: none;">
<form method="post" enctype="multipart/form-data">
{HTML::select('nombre', $nombre , $nombre)}
</br></br></br>
<input type="hidden" name="id" value="{$cliente}" />
<table>
<td width="10%">Desde: {HTML::calendario( 'desde', $hoy )}</td>
<td width="10%">Hasta: {HTML::calendario( 'hasta', $hoy )}</td>
<td width="10%"><input type="text" name="factura" id="factura" placeholder="Número de factura"/></td>
<td width="10%"><input type="text" name="estado_pago" id="estado_pago" placeholder="Número estado pago"/></td>
<td width="10%"><input type="checkbox" name="sifacturada" id="sifacturada" value="facturada"/>Facturadas</td>
<td width="10%"><input type="checkbox" name="nofacturada" id="nofacturada" value="no_facturada"/>No Facturadas</td>
</table>
<div style="position: relative; left: 50%; margin-top: -0.8em;">
<input type="submit" value="Filtrar" name= "filtros" />
</div>
</form>
</div>
我怎么能用jQuery做到这一点? d:
我正在尝试用这个做点什么:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#form1').submit(function(){
jQuery('#hidden').show();
});
});
</script>
但是没有工作