[jQuery] aJax 의 간단한 예제
ajax 간단한 예제 Parameter를 직접 넘기기 $.ajax({ type: "POST", dataType: "text", url: "/action.asp", data: { mode : "INSERT" , name: val.value}, success: function(data){ if (data == "OK") { val.value = ""; } } ,error: function(){ alert(" html Load error!!"); } }); Form submit 하기 $.ajax({ type: "POST", dataType: "text", url: "/action.asp", data: $("#form_id").serialize(), success: function(data){ if (data ..
더보기
[jQuery] autocomplete 사용 옵션
$.Autocompleter.defaults = { inputClass: "ac_input", resultsClass: "ac_results", loadingClass: "ac_loading", minChars: 1, delay: 400, matchCase: false, matchSubset: true, matchContains: false, cacheLength: 10, max: 100, mustMatch: false, extraParams: {}, selectFirst: false,
더보기
[jQuery] ajax 옵션
$.ajax({ type: "POST" //"POST", "GET" , async: true //true, false , url: "/common/response.jsp" //Request URL //, dataType : "html" //전송받을 데이터의 타입 "xml", "html", "script", "json" 등 지정 가능 미지정시 자동 판단 , timeout: 30000 //제한시간 지정 , cache: false //true, false , data: 'a=asdf' //$("#inputForm").serialize() //서버에 보낼 파라메터, form에 serialize() 실행시 a=b&c=d 형태로 생성되며 한글은 UTF-8 방식으로 인코딩 "a=b&c=d" 문자열로 직접 입력 가능 ..
더보기