0
我有這個jquery.ajax表單,它填充數據庫中的數據,並在按鈕單擊時自動填充表單域。 當表單字段爲文本類型時,它工作得很好 但是當表單字段是選擇框時它不會自動填充。 這裏是我到目前爲止的代碼..爲選擇框自動填充表單域
<script type="text/javascript">
$(document).ready(function() {
function myrequest(e) {
var lead_id = $('#lead_id').val();
$.ajax({
method: "GET",
url: "/pdp/fetch-client-data/",
dataType: 'json',
cache: false,
data: {
lead_id: lead_id
},
success: function(responseObject) {
alert('success');
$('#client_name').val(responseObject.client_name);
$('#state').val(responseObject.state);
},
failure: function()
{
alert('fail');
}
});
}
$('#fetchFields').click(function(e) {
e.preventDefault();
myrequest();
});
$("#lead_id").bind("change", function(e)
{
myrequest();
});
});
</script>
<table width="600" align ='center'>
<form action ='<?php echo $SERVER['PHP_SELF']; ?>' method='post'>
<tr>
<td>
<label for="lead_id">Lead id: </label>
<input type="text" name="lead_id" id="lead_id">
<button id="fetchFields">Fetch</button>
</td>
</tr>
<tr>
<td>
Agent: <select name="agent">
<option value="">[Select]</option>
<?php foreach($this->agent_query as $agent){ ?>
<option value="<?php echo $agent['id']; ?>"><?php echo $agent['name'];?></option>
<?php } ?>
</select>
</td>
</tr>
<tr>
<td>
<label for="client_name">Client Name: </label>
<input type="text" name="client_name" id="client_name">
</td>
</tr>
<tr>
<td>
<label for="state">State: </label>
<select name="state" id='state'>
<option id='state' value='1'></option>
</select>
</td>
</tr>
<tr>
<td>
# of Policies:
<select name="policies">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="submit" value="NEXT" name="submit">
</td>
</tr>
</form>
</table>
我的意思是選擇選項已重視像TX,NY等on..When點擊獲取按鈕,查詢返回TX(對於如),那麼所選擇的選項應該自動是TX。我會嘗試你上面的代碼,因爲我仍然是新的jQuery ajax – Micheal 2012-02-06 03:27:04
沒關係它現在的作品..謝謝.. – Micheal 2012-02-06 15:27:14
最後一個問題雖然..如果查詢返回空結果?我如何在表單區域顯示錯誤消息?例如。找不到lead_id。 – Micheal 2012-02-06 15:50:46