페이지 를 불 러 오 자마자 배경 데이터 요청 (ajax)

603 단어 잡기
저도 잘 모 르 겠 지만 어쨌든 두 가지 방법 이 있 습 니 다. 제 가 사용 하기에 아주 좋 습 니 다. 바로 코드 를 붙 입 니 다.
(1)
$.ajax
({
     cache: false,
     async: false,  
     dataType: 'json', type: 'post',
     url: "dbdt/getDBDT",
     data:{year:2017},
     success: function (data){
    	 	map1Layer=data[0].URL;//  
			map2Layer=data[1].URL;//  
     }
 });

(2)
$(document).ready(function(){
	$.get("dbdt/getDBDT",
			{year:2017},
			function(e) {
				console.log(e);
				map1Layer=e[0].URL;
				map2Layer=e[1].URL;
			},"json")
	})

좋은 웹페이지 즐겨찾기