반응형


  <script type="text/javascript">


    window.onload = function() {

    $.ajax({

type : "GET",

url : "/Api/Show/showsidecount.tiki_show",

contentType : "application/json; charset=utf-8",

dataType : "text",

success : function(showListCount) {

//전체 공연예매 가능 수  화면에 뿌리기

var showdbcount = document.getElementById("showcount");

showdbcount.innerHTML=showListCount;

},

error : function(json) {

alert("실패");

}

});

   

    $.ajax({

type : "GET",

url : "/Api/Show/showsideplacecount.tiki_show",

contentType : "application/json; charset=utf-8",

dataType : "text",

success : function(showplaceCount) {

//전체 공연예매 가능 수  화면에 뿌리기

var placeCount = document.getElementById("showplaceCount");

placeCount.innerHTML=showplaceCount;

},

error : function(json) {

alert("실패");

}

});

   

    $.ajax({

type : "GET",

url : "/Api/Show/showsideshowrooncount.tiki_show",

contentType : "application/json; charset=utf-8",

dataType : "text",

success : function(RoomListCount) {

//전체 공연예매 가능 수  화면에 뿌리기

var showRoomCount = document.getElementById("RoomCount");

showRoomCount.innerHTML=RoomListCount;

},

error : function(json) {

alert("실패");

}

});

   

   

   

    };

</script>


반응형

'Study Hot > 유용한자료' 카테고리의 다른 글

요즘 뜨는 핫 이슈  (0) 2014.08.14
톰캣 서버 한글화  (0) 2014.08.14
자바스크립트 셀렉트박스 선택 값 구하기  (0) 2014.07.31
db to json  (0) 2014.07.29
두개의 소스를 비교해주는 유틸, WinMerge  (1) 2014.07.25

+ Recent posts