有谁知道为什么这不起作用?据我所知,服务器正在正确返回JSON。示例:http://www.mediaworks.cc/test/sandbox2.aspx
左侧文本框是自动完成。在自动填充中单击项目时,将填充右侧文本框。
以下是代码:
<!DOCTYPE html>
<html>
<head id="Head1" runat="server">
<title></title>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".autosuggest").autocomplete({
source: function (request, response) {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "Sandbox2.aspx/GetPackages",
data: "{'term':'" + document.getElementById('txtPackage').value + "'}",
dataType: "json",
success: function (data) {
response($.map(data, function (item) {
return {
label: item.HotelPackage,
value: item.ID
};
}));
}
});
},
select: function (event, ui) {
document.getElementById('selectedValue').value = ui.item.HotelPackage;
}
});
})
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:TextBox ID="txtPackage" runat="server" CssClass="autosuggest"></asp:TextBox>
<asp:TextBox ID="selectedValue" runat="server"></asp:TextBox>
</form>
</body>
</html>
答案 0 :(得分:0)
您的id
和class
指的是相同的元素。
<asp:TextBox ID="txtPackage" runat="server" CssClass="autosuggest">
将自动填充功能分配给.autosuggest文本框
$(".autosuggest").autocomplete({
数据部分也引用相同的元素
data: "{'term':'" + document.getElementById('txtPackage').value + "'}",
两者都是一样的,这是错误的。
确保 data
部分正确