0
我用bootstrap 3使用多個typeahead字段,並找不到檢測哪個元素觸發typeahead的方法。typeahead js檢測元素觸發
$('.mytypeaheads').typeahead({
name: 'test',
valueKey: 'myValue'
remote : {
url: 'typeahead.php?q=%QUERY',
filter: function(parsedResponse) {
}
}
})
需要將查詢發送到服務器
謝謝你是對的,但我需要知道元素之前發送查詢到服務器之後。編輯原始問題,並從過濾器中移除{{ - 檢測哪個元素被觸發typeahead - }}以防止混淆。 –