日期:2014-05-16 浏览次数:20779 次
$('#stats').load('stats.html');
$.post('save.cgi', {
    text: 'my string',
    number: 23
}, function() {
    alert('Your data has been saved.');
});
$.ajax({
    url: 'document.xml',
    type: 'GET',
    data: {'p1':'v1', 'p2':'v2'},
    dataType: 'xml',
    timeout: 1000,
    error: function(){
        alert('Error loading XML document');
    },
    success: function(xml){
        // do something with xml
    }
});
success: function(xml){
    $(xml).find('item').each(function(){
        var item_text = $(this).text();
        $('<li></li>')
            .html(item_text)
            .appendTo('ol');
    });
}