Ajax将整个网页作为tagit中的响应返回

时间:2017-03-01 06:51:43

标签: php jquery ajax codeigniter

我有一个ajax函数,它将数据发送到php codeigniter脚本并返回整个页面。我需要来自tagit响应的建议。请提出解决方案。感谢

这是代码

Ajax调用

m x n

控制器功能

            $(document).ready(function() {
                      $("#allTags").tagit({
                        tagSource: function(search, showChoices) {
                          $.ajax({
                            type: "GET",
                            url: base_url + "beep/suggetions",
                            data: "search=" + search.term,
                            //contentType: "application/json",
                            dataType: 'json',
                            success: function(choices) {
                              alert(choices);
                              showChoices(choices);
                            }
                          });
                        }
                      });
            }); 

0 个答案:

没有答案