1 回答
TA贡献1796条经验 获得超4个赞
问题出现是由于链接上的点击功能。通过指定包含这些链接的 div 的 ID 来定义两个单独的链接组。
// Set searched text in input field on click of search button
$(document).on("click", "#from-show-list a", function() {
$("#from-input").val($(this).text());
$("#from-show-list").html("");
});
// Set searched text in input field on click of search button
$(document).on("click", "#to-show-list a", function() {
$("#to-input").val($(this).text());
$("#to-show-list").html("");
});
像这样使用 css 将最大高度应用于结果 div。
<div id="from-show-list" class="list-group" style="max-height: 100px; overflow: auto;"></div>
<div id="to-show-list" class="list-group" style="max-height: 100px; overflow: auto;"></div>
添加回答
举报