How do I pass an extra parameter to Jquery Autocomplete field?

前端 未结 8 1508
情书的邮戳
情书的邮戳 2020-12-08 12:41

I\'m using the JQuery Autocomplete in one of my forms.

The basic form selects products from my database. This works great, but I\'d like to further develop so that o

8条回答
  •  [愿得一人]
    2020-12-08 13:41

    $('#product').setOptions({
        extraParams: {
            extra_parameter_name_to_send: function(){
                return $("#source_of_extra_parameter_name").val();
            }
        }
    })
    

提交回复
热议问题