我正在使用twitter bootstrap typeahead。
我已经定制了打字头,所以我可以选择一对值/标签
$.each(data.medicines,function(index,values){
_med=new Object()
_med.value=values.LYF
_med.id=values.LYF_NUMER
_medicines.push(_med)
})
//Fill typeahead with data
$('.typeahead').typeahead({
// note that "value" is the default setting for the property option
source:_medicines,
onselect: function(obj) { showdetails(obj) }
})
如何使用 Javascript 设置选定的值?
For exemple $("#mytypehead").val(43);