typeahead:如何更改URL?

时间:2017-01-31 16:07:22

标签: typeahead.js typeahead bootstrap-typeahead

这是我的JS脚本

function fillCities(country) {
    console.log('fillCities', country);
    var url = 'ajax.php?action=getVilles&country='+country+'&ville=%QUERY';
    console.log('url', url);
    $('#city').typeahead('destroy');    
    $('#city').typeahead({
        name : 'city',    
        displayKey: 'city',
        valueKey: 'city',
        limit:10,
        cache: false,
        minLength:3,
        remote: {
            url : url
        }
    });
}

问题是:当国家/地区发生变化时,预先输入请求始终是SAME网址并且不会更改网址!

如何动态更改网址(网址内的国家/地区参数)?

0 个答案:

没有答案