Jquery 백그라운드 호출(업데이트 중)

1920 단어 jquery
한 가지 방법:
1. jquery를 도입한다.js:
<script type="text/javascript" src="js/jquery-1.4.js"></script>

2. 페이지:
        <form action="demo.do" method="post" id="demoForm">   
            ajax     
         <input type="text" id="val" />   
            <input type="text" id="result"/>   
            <input type="button" id="btn" value="ajax" onclick="getData()"/>   
        </form>  

3.js:
 function getData(){
  	$.ajax({
		type: 'post',
  		url: '',           //     .
  		data: {'val': $("#val").val(), 'name':'value'},     //      .
  		success: function(result){
  			$("#result").val(result);        //     .
  		}
  	});
  }

  
4. 백그라운드 코드:
response.getOutputStream().print("test");

 
기타 방법:
1、$.getJSON(url,  null,  function(data){} ).
 
 
 
 
 
양식 비동기 전송:
 
 
$(document).ready(function(){
       $('#myform').submit(function(){
           jQuery.ajax({
               	      url: "url",   //      
               data: $('#myform').serialize(), //         
               type: "post",                   //        "POST",   "GET"
                      //dataType: "json",
                      success: function(data) {
                          //alert('here');
               	      }
           });
           return false;
       });
   });

좋은 웹페이지 즐겨찾기