如何在jquery中使用带有自动完成功能的ajax

时间:2014-04-08 15:37:59

标签: ajax jquery-ui autocomplete

我有以下jquery ajax电话?我的webservice会返回dataset

以下是代码:

$(document).ready(function(){ 
    $('#ctl00_ContentMain_ddlRegions').change(function(){
        region = $(this).val();
        alert(region);
    });       
});

$('input[type="text"]').autocomplete({               
        $.ajax({
            async: true,
            type: "GET",
            url: "~/EmailActivation/EmailActivation.asmx/GetIsoFromRegion",
            data: "{'option':'" + region + "'}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            cache: false,
            success: function(data,status){
                alert("success");    
            }
        });
        minLength: 4 });
});

现在我的代码出错,所以我甚至无法显示警告显示区域。从autocomplete部分生成错误。 当我删除自动完成部分时,脚本工作。

我需要更改哪些内容以及如何让autocomplete使用来自webservice的数据?

谢谢

0 个答案:

没有答案