9
我有問題試圖獲取選定的對象,而不是傳遞給成功回調的「newValue」。X-Editable JQuery插件 - 選擇獲取源對象
下面是一個例子:
$("select").editable({
type : "select",
title: 'Select Fruit',
source : [
{text : "Apple", value: "option_1"},
{text : "Orange", value: "option_2"},
{text : "Mango",value: "option_3"},
{text : "Strawberry",value: "option_4"}
],
success:function(response,newValue){
console.log(newValue); // newValue contains the "text" string ok..
// How do I get the selected source object? eg. {text : "Orange", value: "option_2"}
// So I can access the object like..
console.log(newValue.value); // output option_*
}
});
感謝 卡爾
你有沒有看到console.log(響應)? – MVG1984
是的,我已經嘗試過,這是來自Ajax請求(我沒有使用)的響應 –
@CarlSmith可以爲此做一個小提琴嗎? – ProllyGeek