我在尝试获取所选对象而不是" newValue"时遇到问题。传递给成功回调。
以下是一个例子:
$("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_*
}
});
由于 卡尔
答案 0 :(得分:5)
您可以使用display
回调来访问//run the program
(function(){
//let p = new Pool();
let p = new Population();
p.generateRandom();
//p.generatePopulation();
console.log(p);
}());
,甚至是整个所选对象:
value