我有一個小問題...我不知道發生了什麼,但提交事件正在工作,因爲當我點擊「ingresar」提交按鈕,它發送所有的數據。 但是當我按下輸入沒有任何反應。窗體不會觸發當我按下提交
我認爲問題是,我有一個表內的形式....
難道我錯了嗎?我認爲問題在這裏,因爲,正如我所說的,當我按Ingresar提交按鈕它發送數據。
Thx爲您的幫助! :)
<form id="forma-recurso" method="POST">
<table >
<tr>
<td><p>Nombre recurso:</p></td>
<td><input type="text" class="campo nombre-recurso" maxlength="50"></td>
</tr>
<tr>
<td><p>Dirección:</p></td>
<td><input type="text" class="campo direccion-recurso" maxlength="50"></td>
</tr>
<tr>
<td><p>Descripción:</p></td>
<td><input type="text" class="campo descripcion-recurso" maxlength="100"></td>
</tr>
<tr>
<td><p>Tipo de punto de interés:</p></td>
<td><select type="text" class="campo tipo-pto-interes">
<?php
$conexion=pg_connect("host= localhost port=5432 dbname=EmergenciesResponse user=postgres password=asdf");
$registros=pg_query("select tipo_pto, tipo_pto_interes from tipos_ptos_interes where tipo_pto_interes BETWEEN 1 AND 4");
while ($reg=pg_fetch_array($registros))
{
echo "<option value=\"$reg[tipo_pto_interes]\">$reg[tipo_pto]</option><br>";
}
pg_close($conexion);
?>
</select></td>
</tr>
<tr>
<td><p>Latitud/longitud</p></td>
<td><input type="text" class="latlng" disabled></td>
</tr>
<tr>
<td class="salida-btn"><button class="btn-salir">Salir</button></td>
<td class="ingreso-boton"> <input type="submit" class="ingresar-recurso"value="Ingresar"></td>
</tr>
</table>
</form>
你的表單沒有action標籤告訴它在哪裏提交。 – durbnpoisn
它沒有它,因爲即時通訊使用jQuery。 :) –
呃......我完全看不到所有的JQuery。如果你問爲什麼你的提交不起作用,提供正在提交的代碼可能會有所幫助。 – durbnpoisn