我有一个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);
}
});
}
});
});