Using Bootstrap's typeahead javascript plugin, I'm attempting to change the data-source attribute via jQuery's $.post method. Initially, I have:
<input type="text" data-provide="typeahead" data-source="["Option 1","Option 2","Option 3"]">
Then, let's say a button is clicked and it tries to update the data-source:
$('button').on('click',function(){
$.post('update.php',function(resp){
$('input').attr('data-source',resp);
});
});
The resp XHR result returns an array like this:
["One Option","Two Option","Three Option"]
I'm finding that this does not reliably update the data-source with a new array that was constructed in the response.
Does anyone know what the problem could be?
This does not appear to capture the selected value. Does anyone know how to get the selected value using typeahead with Bootstrap?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…