12306 도시 선택 상자
17746 단어 12306
1. 페이지 구조:
<div style="width: 26%;margin:100px auto;">
:<input type="text" id="txt_value" /><br/> <br/>
<div class="yxcdv1" style="width: 100%;">
<div class="ac_title">
<span> </span> <a class="ac_close" style="cursor: pointer" title=" " id="yxcclose">
</a>
</div>
<ul class="AbcSearch clx" id="abc">
<li index="1" id="nav_list1" class="action">A-E</li>
<li index="2" id="nav_list2" class="">F-J</li>
<li index="3" id="nav_list3" class="">K-O</li>
<li index="4" id="nav_list4" class="">P-T</li>
<li index="5" id="nav_list5" class="">U-Z</li>
</ul>
<ul class="popcitylist" style="overflow: scroll; max-height: 300px; height: 300px;
display: block;" id="ul_list1">
<li class="ac_even itemLi" title=" " data="beijing" category="1" > </li>
<li class="ac_even itemLi" title=" " data="chongqing" category="1"> </li>
</ul>
<ul class="popcitylist" style="overflow: scroll; max-height: 300px; height: 300px;
display: none;" id="ul_list2">
<li class="ac_even itemLi" title=" " data="guangzhou" category="2"> </li>
<li class="ac_even itemLi" title=" " data="guangxi" category="2"> </li>
</ul>
<ul class="popcitylist" style="overflow: scroll; max-height: 300px; height: 300px;
display: none;" id="ul_list3">
</ul>
<ul class="popcitylist" style="overflow: scroll; max-height: 300px; height: 300px;
display: none;" id="ul_list4">
</ul>
<ul class="popcitylist" style="overflow: scroll; max-height: 300px; height: 300px;
display: none;" id="ul_list5">
</ul>
<ul class="popcitylist" style="max-height: 300px; height: 300px; display: none; text-align: center;
line-height: 300px;" id="ul_list0">
</ul>
</div>
</div>
2、JS
<script type="text/javascript">
$(function () {
$(".itemLi").click(function () {
var showTxt = $.trim($(this).text());
$("#txt_value").val(showTxt);
});
$("#abc li").click(function () {
var categoryIndex = $(this).attr("index");
showLi(categoryIndex);
});
var cityList = [];
(function () {
$(".itemLi").each(function () {
var citypinyin = $(this).attr("data") + "-" + $(this).attr("category");
cityList.push(citypinyin);
});
})();
$("#txt_value").keyup(function () {
var v = $.trim($(this).val()).toLocaleLowerCase();
toChange(v);
});
function toChange(searchTxt) {
var cityPinYin = "";
var categoryIndex = 0;
if (searchTxt) {
$(".itemLi").css("color", "");
for (var index in cityList) {
var cityPY = cityList[index];
// document.title = cityPY.indexOf(searchTxt);
if (cityPY.indexOf(searchTxt) == 0) {
cityPinYin = cityPY.split('-')[0];
categoryIndex = cityPY.split('-')[1];
$(".itemLi").each(function () {
if ($(this).attr("data") == cityPinYin) {
$(this).css("color", "red");
}
});
}
}
}
else { categoryIndex = 1; }
showLi(categoryIndex);
}
function showLi(categoryIndex) {
$(".popcitylist").hide();
if (categoryIndex == 0) {
$("#ul_list0").show();
}
else {
$("#abc li").removeClass("action");
$("#nav_list" + categoryIndex).addClass("action");
$("#ul_list" + categoryIndex).show();
}
}
})
</script>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 으로 12306 여 표를 조회 하 는 것 을 가르쳐 드 리 겠 습 니 다.우리 가 제출 한 URL 요청 을 통 해 알 수 있 듯 이 우리 가 입력 한 청 두,심 천 은 모두 대응 하 는 번호 가 되 었 다.예 를 들 어 청 두(CDW),심 천(SZQ)등 이다.그래서 우리 프로그램 이 입력...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.