喜的朋友我試圖我的AJAX輸出追加到我的下拉列表....追加Ajax的jQuery的數據到下拉列表中的CakePHP
我AJAX功能: -
$.ajax({
url: "getcolumn",
data: {value: value},
type: "POST",
success: function(output) {
var column = output;//here i am assigning the output to another variable
var mySelect = $('#table_name');
$.each(column, function(val, text) {
mySelect.append($('<option></option>').val(val).html(text));
});
我的形式下拉: -
echo $this->Form->input('Column', array(
'label' => 'Select the column name below',
'name' => 'tablename',
'id' => 'table_name',
'options' => array('null')
));
我想從AJAX輸出追加到上述下拉框.... 我試圖在我的AJAX成功處理功能增加,但沒有工作。誰能幫我.... 和輸出是JSON形式.....
你可以在這裏發佈'json'輸出嗎? – Jai 2013-02-19 11:08:14
['id','venue','address',....] – 2013-02-19 11:16:57
我需要查看json結構,並且請具體說明要在選項文本中顯示json的哪個部分。 – Jai 2013-02-19 11:21:02