Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # ajax ## ajax 호출 <sxh js> $.ajax({ type:"GET" , url:"../util/buildingInfo.jsp" , data: { "UFID" : ufid } , success :function (data){ alert("success"); } }); </sxh> ## jsp 파일 생성 <sxh java> <%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <% // 파라미터 받기 String ufid = request.getParameter("UFID"); String resStr = "{\"AJAX\":\"" + ufid + "\"}"; out.println(resStr); %> </sxh> # 참고 * <http://hyeonstorage.tistory.com/112> open/ajax.txt Last modified: 2024/10/05 06:15by 127.0.0.1