0
我有一個JQuery UI日期選擇器的問題。我向表單添加兩個日期選擇器,但是當我提交表單時,兩個日期選擇器的值都不會提交。我嘗試使用POST和GET,但都沒有工作,甚至沒有提交字段的名稱。我錯過了什麼?jQuery UI datepicker值沒有提交
下面是初始化的日期選擇器代碼:
$(function() {
$("#datepicker_Inicio,#datepicker_Fin").datepicker({
showOn: "button",
buttonImage: "./Images/date.gif",
buttonImageOnly: true,
dateFormat: "yy-mm-dd"
});
});
而且繼承人的形式的代碼:
<form class="agregarForm" action="saveClient.php" name="agregarClienteForm" method="get">
<label class="formTitle">Agregar Cliente</label>
<br><br>
<label>Nombre:</label><br>
<input type="text" name="nombre_cliente_nuevo" style="width:200px;margin-top:7px;">
<br><br>
<label>Duración del Contrato:</label>
<label>Fecha de Inicio:</label>
<input id="datepicker_Inicio" type="text" style="width:100px;" name="fecha_inicio_contrato" onchange="dateFrom()" disabled><br>
<input id="duracion" style="width:50px;" type="number" min="1" name="duracion_contrato" onchange="dateFrom()"> <label>meses</label>
<label>Fecha de Fin:</label>
<input id="datepicker_Fin" type="text" style="width:100px;" name="fecha_fin_contrato" disabled><br><br>
<label>Presupuesto del Contrato: $</label><br>
<input type="text" name="presupuesto_contrato"><br><br>
<label>Porcentaje de ingreso: </label><br>
<label>BTW: </label>
<input type="text" style="width:50px;" name="ingreso_btw"><label style="margin-right:4%;">%</label>
<label>Herramientas: </label>
<input type="text" style="width:50px;" name="inversion_herramientas"><label>%</label><br><br>
<label>Categoría:</label><br>
<select id="categoriasList" name="categoria"><option>Política</option><option>IP</option></select><br><br>
<label>Subcategoría</label><br>
<select id="subCat" name="subcategoria"><option id="sub1">Campañas</option><option id="sub2">Gobierno</option></select><br><br>
<input type="button" value="Agregar Cliente" onClick="this.form.submit()">
</form>
我已經嘗試過沒有禁止,也沒有工作:( – 2013-03-15 04:10:30
因此,沒有禁用,它仍然無法在所有提交這些領域?或者它不是提交的只? – Bobster4300 2013-03-15 04:13:18
什麼功能「的價值this.form.submit()「do?在按鈕的onClick事件中,沒有DISABLED的 – Bobster4300 2013-03-15 04:15:00