0

我有两个 JQuery UI 自动完成输入字段。当在第一个选项中选择一个选项时,选择的值将用作数据库查询的条件,该查询将发送第二个自动完成字段的源数据。我的问题是如何通过 Post 方法将第一个选择的值发送到 PHP 页面?

到目前为止的代码如下所示(此代码来自使用 GET 方法的教程;但我想使用 Post):

<script>

                          $("input#divisions").autocomplete ({
                                                      //this is the first input 
                          source : [
                                      { value: "81", label: "City1" },
                                      { value: "82", label: "City2" },
                                      { value: "83", label: "City3" }                                       ],
                          minLength : 0,
                          select: function(event, ui) {
                              $('#divisions').val(ui.item.label);

                              return false;
                          },
                          focus: function(event, ui){
                             $('#divisions').val(ui.item.label);
                             return false;    
                          },
                          change: function(event, ui){
                                                              //the tutorial has this value sent by variables in the URL; I want the selection value sent by POST. How can I change this?
                              c_t_v_choices = "c_t_v_choices.php?filter=" + ui.item.value;
                              $("#c_t_v").autocomplete("option", "source", c_t_v_choices);
                          }
                          }).focus (function (event)
                          {
                          $(this).autocomplete ("search", "");
                          });

                          $("#c_t_v").autocomplete({
                              source: "",
                              minLength: 2,
                              select: function(event,ui){
                                  //$('#city').val(ui.item.city);              
                              }
                          });   
</script>

有人可以帮忙吗?如果您有任何问题,请随时告诉我。

4

1 回答 1

0

我为此找到的解决方案是在第一次自动完成中进行选择时使用 AJAX 创建源。

示例代码可以在这里找到:https ://stackoverflow.com/questions/12715204/assigning-source-for-jquery-autocomplete

于 2012-11-03T04:54:23.283 回答