=================================================
部分代码:
===========================================">

js는 지방 및 도시 3단계 연결 선택 상자 코드 Sharing_javascript 기술을 구현합니다.

WBOY
풀어 주다: 2016-05-16 17:41:01
원래의
1418명이 탐색했습니다.

작전 효과:
js는 지방 및 도시 3단계 연결 선택 상자 코드 Sharing_javascript 기술을 구현합니다.
===================================== == ============
코드 부분:
========================== ====== ===================
물론 먼저 데이터베이스에 이 테이블이 있어야 합니다. 그렇지 않으면 데이터가 없습니다...^ _^

코드 복사 코드는 다음과 같습니다.


위치:



input type="hidden" id="myRegion" value="${user.regionId}"/>







js 코드:



코드 복사*
*/
function loadCity() {
var ProvinceId = $("#provinceSelect option:selected").val() ;
if(provinceId == null || ProvinceId == ""){
//alert("주를 찾을 수 없음"); }else{
$.post(rootPath "/ loadCity", {
"q" : ProvinceId
}, function(data, result) {
if(data == "noId"){
alert("요청 오류");
}else if(data == "null"){
alert("시스템이 해당 지역에 속한 도시를 찾을 수 없습니다.")
}else {
data = eval("{" data "} ");
var citySelect = $("#citySelect")
var myCity = $("#myCity").val(); 🎜>citySelect.html("");
for ( var i = 0; i < data.length; i ) {
if(myCity != null && myCity != "" && myCity > 0 && myCity == data[i].id){
citySelect.append("");
}else{
citySelect.append("");
}
}
loadRegion()
}
}); *
* 로딩 영역
*
*/
function loadRegion() {
var cityId = $("#citySelect option:selected").val()
if(cityId == null || cityId == " " || cityId < 1){
alert( "도시를 찾을 수 없음");
}else{
$.post(rootPath "/loadRegion", {
"q" : cityId
}, function(data, result) {
if(data == "noId"){
alert("요청 오류")
}else if(data == "null"){
alert("시스템이 이 도시 지역에 속한 파일을 찾을 수 없습니다.");
}else{
data = eval("{" data "}")
var RegionSelect = $( "#regionSelect");
var myRegion = $(" #myRegion").val();
regionSelect.html("")
for ( var i = 0; i < data. length; i ) {
if(myRegion != null && myRegion != "" && myRegion > 0 && myRegion == data[i].id){
regionSelect.append("");
}else{
regionSelect.append(" ");
}
}
}
});
}
};
/**
* 지방 변경 이벤트
*
*/
$("#provinceSelect").change(loadCity)
/**
* 도시 변경 이벤트
*
* /
$("#citySelect").change(loadRegion )

$(function() {
loadCity();
})


백그라운드 방식:




코드 복사

코드는 다음과 같습니다.

/**
* 도시 데이터 로드
*
*/
public void loadCity() {
if (q == null || q.trim().equals("")) {
write("noId");
} else {
목록 citys = xzqhService.queryCitys(q.trim());
if (citys == null || citys.size() < 1) {
write("null");
} else {
StringBuilder 빌더 = new StringBuilder("[");
for (Xzqh city : citys) {
builder.append("{'id':'");
builder.append(city.getCityId());
builder.append("','name':'");
builder.append(city.getCity());
builder.append("'},");
}
if (builder.length() > 1)
builder.replace(builder.length() - 1, builder.length(), "]");
write(builder.toString());
}
}
}
/**
* 영역 데이터 로드
*
*/
public void loadRegion() {
if (q == null || q.trim().equals ("")) {
write("noId");
} else {
목록 citys = xzqhService.queryDistricts(q.trim());
if (citys == null || citys.size() < 1) {
write("null");
} else {
StringBuilder 빌더 = new StringBuilder("[");
for (Xzqh 지역 : 도시) {
builder.append("{'id':'");
builder.append(district.getRegionId());
builder.append("','name':'");
builder.append(district.getRegion());
builder.append("'},");
}
if (builder.length() > 1)
builder.replace(builder.length() - 1, builder.length(), "]");
write(builder.toString());
}
}
}
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿