我的網誌清單

2013年9月26日 星期四

ajax

最近不斷要寫Web Program...救命~
jquery和javascript更是我之前的死敵lol
還要用HTTP request... 哈...你要我命好吧XD
最後用了2個月時間都叫收伏了它們XP
回頭講ajax...這個jquery寫比直接開HTTP request簡單


//記得加Lib去你的javascript!!!
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>

$(document).ready(function(e){

    $.ajax({

        url: "destinationURL.html",
        data: {
            yourData: $("#dataField").val();

        },
        type: "POST",
        //dataType: "json",  //For me that is almost unnecessary
        success: function(dataHtml,textStatus,jqXHR) {
              //TODO code
        },
        error: function() {
              //TODO code        },
        complete: function() {
              //TODO code        }
   
    });
});

沒有留言:

張貼留言