我有1个自动完成事件,一个搜索代码,另一个搜索描述。
对于搜索代码的人来说,在选择了正确的代码之后,我想填写一个描述。我怎样才能做到这一点 ?这两个来源都是数据库驱动的
这是描述搜索的代码
$("#<%=desc2.ClientID%>").autocomplete({
source: ds2, minLength: 5,
change: function (event, ui) {
if (!ui.item) {
$(this).val('');
}
}
}
);
这里是代码搜索
$("#<%=code1.ClientID%>").autocomplete({
source: ds, minLength: 3,
change: function (event, ui) {
if (!ui.item) {
$(this).val('');
}
//new code start
else {
if ($(this).val() === 'Z08') {
$("#<%=desc2.ClientID%>").val(Test);
} else {
$("#<%=hosp_dis1_desc.ClientID%>").val('');
}
}
// new code end
}
}
);
如何在代码搜索中更改此部分
if ($(this).val() === 'Z08') {
$("#<%=desc2.ClientID%>").val(Test);
} else {
$("#<%=hosp_dis1_desc.ClientID%>").val('');
}
通过代码搜索在desc2中显示??