65

我在我的一种形式中使用了 JQuery 自动完成功能。

基本表单从我的数据库中选择产品。这很好用,但我想进一步开发,以便只返回从某个邮政编码发货的产品。我已经弄清楚了后端脚本。我只需要找出将邮政编码传递给此脚本的最佳方法。

这就是我的表格的样子。

<form>

<select id="zipcode">

<option value="2000">2000</option>
<option value="3000">3000</option>
<option value="4000">4000</option>

</select>

<input type="text" id="product"/>

<input type="submit"/>

</form>

这是 JQuery 代码:

$("#product").autocomplete
({
     source:"product_auto_complete.php?postcode=" + $('#zipcode').val() +"&",
     minLength: 2,
     select: function(event, ui){

                             //action

                                 }
});

此代码在一定程度上有效。但无论实际选择哪个值,都只返回第一个邮政编码值。我猜发生的事情是源 URL 在页面加载时启动,而不是在选择菜单更改时启动。有没有解决的办法?或者有没有更好的方法来实现我想要的结果?

4

8 回答 8

100

您需要对source调用使用不同的方法,如下所示:

$("#product").autocomplete({
  source: function(request, response) {
    $.getJSON("product_auto_complete.php", { postcode: $('#zipcode').val() }, 
              response);
  },
  minLength: 2,
  select: function(event, ui){
    //action
  }
});

这种格式允许您在运行时传递任何值,而不是在绑定时传递。

于 2010-09-12T09:08:46.027 回答
34

这不是复杂的男人:

$(document).ready(function() {
src = 'http://domain.com/index.php';

// Load the cities straight from the server, passing the country as an extra param
$("#city_id").autocomplete({
    source: function(request, response) {
        $.ajax({
            url: src,
            dataType: "json",
            data: {
                term : request.term,
                country_id : $("#country_id").val()
            },
            success: function(data) {
                response(data);
            }
        });
    },
    min_length: 3,
    delay: 300
});
});
于 2014-02-26T23:04:01.093 回答
9
jQuery("#whatJob").autocomplete(ajaxURL,{
    width: 260,
    matchContains: true,
    selectFirst: false,
    minChars: 2,
    extraParams: {  //to pass extra parameter in ajax file.
        "auto_dealer": "yes",
    },
});
于 2013-11-19T06:15:48.950 回答
6

我相信您认为您的呼叫$("#product").autocomplete在页面加载时触发是正确的。也许您可以为选择菜单分配一个 onchange() 处理程序:

$("#zipcode").change(resetAutocomplete);

并让它使#productautocomplete() 调用无效并创建一个新调用。

function resetAutocomplete() {
    $("#product").autocomplete("destroy");
    $("#product").autocomplete({
         source:"product_auto_complete.php?postcode=" + $('#zipcode').val(),
         minLength: 2,
         select: function(event, ui){... }
    });
}

您可能希望您的 resetAutocomplete() 调用更智能一些——比如检查邮政编码是否与最后一个值不同——以节省一些服务器调用。

于 2010-09-12T03:06:20.063 回答
3

这对我有用。覆盖事件search

jQuery('#Distribuidor_provincia_nombre').autocomplete({
    'minLength':0,
    'search':function(event,ui){
        var newUrl="/conf/general/provincias?pais="+$("#Distribuidor_pais_id").val();
        $(this).autocomplete("option","source",newUrl)
    },
    'source':[]
});
于 2012-09-02T00:34:04.387 回答
0
$('#txtCropname').autocomplete('Handler/CropSearch.ashx', {
    extraParams: {
        test: 'new'
    }
});
于 2014-12-29T10:34:10.600 回答
0
$('#product').setOptions({
    extraParams: {
        extra_parameter_name_to_send: function(){
            return $("#source_of_extra_parameter_name").val();
        }
    }
})
于 2016-06-22T12:22:27.153 回答
0

希望这个可以帮助某人:

$("#txt_venuename").autocomplete({
    source: function(request, response) {
    $.getJSON('<?php echo base_url(); ?>admin/venue/venues_autocomplete', 
        { 
            user_id: <?php echo $user_param_id; ?>, 
            term: request.term 
        }, 
      response);
    },
    minLength: 3,
    select: function (a, b) {            
        var selected_venue_id = b.item.v_id;
        var selected_venue_name = b.item.label;            
        $("#h_venueid").val(selected_venue_id);
        console.log(selected_venue_id);            
    }
});

默认的“术语”将被新的参数列表替换,因此您需要再次添加。

于 2018-07-26T02:49:49.863 回答