我有两个HTML页面:AddressDate.Html,SelectSeasonType.Html
AddressDate.Html在文本框上保留自动完成的jquery,以便用户在绑定文本框时获得其地址的建议 $(document).ready(function(){
$('#textbox').autocomplete({
source: 'PickupHandler.ashx',
minLength: 5,
select: function (event, ui) {
event.preventDefault();
$('#textbox').val(ui.item.label);
var seasontype = $('#seasonid').val(ui.item.value2);
var textinside = $('#addressid').val(ui.item.value);
}
});
SelectSeasonType.Html具有一个基本的“选择”框,管理员可以选择一个seasonTypeID,并且基于值AddressDate.Html自动完成功能仅应生成建议的选定的SeasontypeID。
$(document).ready(function () {
$('#seasontype_select').change(function () {
var selectedval = $(this).val();
$('#showit').html(selectedval);
});
});
</script>
</head>
<body>
<select id="seasontype_select">
<option value="0">Select</option>
<option value="1">Brush Pickup</option>
<option value="2"> Leaf Pickup </option>
</select>
<div id="showit">
</div>
</body>
在AddressDate.Html中,jquery变量seasontype拥有SeasonTypeID
// var seasontype = $('#seasonid').val(ui.item.value2);
那么有没有办法匹配选择框中的ID?并基于此呈现自动完成的数据?