我有以下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
的数据?
谢谢