這是我的如下代碼..都在我的PHP形式的鏈接直接到表單的動作
<form class="form-horizontal" id="tambah_gps" name="tambah_gps" method="POST" action="../controller/add_gps.php">
<table>
<tr style="height:40px">
<td>Nama User</td>
<td style="width:20px"> : </td>
<td><input class="form-control" type="text" name="nama_user" placeholder=" User Name" style="width:300px" readonly></td>
<td>  <a href="javascript:void(0)" onClick=window.open("pilih_user.php","Ratting","width=1000,height=400,left=200,");><button class="btn btn-primary">Choose User</button></a></td>
</tr>
<tr style="height:40px">
<td>Vehicle ID</td>
<td style="width:20px"> : </td>
<td colspan="2"><input class="form-control" type="text" name="no_polisi" placeholder=" Nomor Polisi Kendaraan"></td>
</tr>
<tr style="height:40px">
<td>Car brand</td>
<td style="width:20px"> : </td>
<td colspan="2"><input class="form-control" type="text" name="merk_mobil" placeholder=" Merk Mobil"></td>
</tr>
<tr style="height:40px">
<td>Color</td>
<td style="width:20px"> : </td>
<td colspan="2"><input class="form-control" type="text" name="warna" placeholder=" Warna"></td>
</tr>
<tr style="height:40px">
<td>GPS Number</td>
<td style="width:20px"> : </td>
<td colspan="2"><input class="form-control" type="text" name="no_telp_gps" placeholder=" nomor telepon GPS"><td>
</tr>
<tr style="height:40px">
<td>Time Zone/td>
<td style="width:20px"> : </td>
<td colspan="2"><input class="form-control" type="text" name="zona_waktu" value="GMT (Default)" placeholder=" Zona Waktu" readonly></td>
</tr>
</table>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal">Cancel</button>
<input type="submit" name="sumbit" value="Save" class="btn btn-primary">
</div>
<form>
我所做的形式有3個按鈕:1個按鈕來保存,1個鍵取消,1個鍵選擇用戶名..如果按鈕選擇用戶名點擊,它將打開包含用戶列表的新窗口。該按鈕工作得很好。但每當它點擊頁面始終指向表單操作(就像點擊保存按鈕時一樣)。任何人都可以告訴我我的代碼有什麼問題嗎?謝謝你...
你有他們既作爲BTN BTN-小學,嘗試改變他們中的一個,看看會發生什麼 – Jim
沒有什麼是wr與您的代碼一起。這就是html表單的行爲。你點擊表單中的一個按鈕,它會提交該表單。 –
@jim:css類與單擊按鈕時發生的情況無關。它們只是樣式規則... –