我創建一個網頁,搜索所有的客戶信息... 我也使用JSON用於與數據表中的數據自動完成文本框...文本框的TextChanged事件中鉻不火
<script type="text/javascript">
$(document).ready(function() {
$("#<%=txtSearch.ClientID %>").autocomplete({
source: function (request, response) {
$.ajax({
url: '<%=ResolveUrl("~/Service.asmx/GetCustomers") %>',
data: "{ 'prefix': '" + request.term + "'}",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
success: function (data) {
response($.map(data.d, function (item) {
return {
label: item.split('-')[0],
val: item.split('-')[1]
}
}))
},
error: function (response) {
alert(response.responseText);
},
failure: function (response) {
alert(response.responseText);
}
});
},
select: function (e, i) {
$("#<%=hfCustomerId.ClientID %>").val(i.item.val);
},
minLength: 1
});
});
我想對TextChanged事件文本框中選定名稱的顯示數據, 他們textbgox的設置看起來like..`
<asp:TextBox ID="txtSearch" runat="server" AutoPostBack="True"
ontextchanged="txtSearch_TextChanged"></asp:TextBox>
這textchenged事件觸發正常在Mozilla,但在Chrome不工作,, 任何人都可以提出一些解決辦法....
「真」? –
AutoPostBack =「True」用於觸發任何服務器控件的事件 –
刪除AutoPostBack =「True」,如果您不使用然後嘗試使用chrome。 –