$.ajax({ 
        type: 'POST', 
        url: 'http://www.cpecartoon.com/srv/ProgramApi.asmx/getNum', 
        dataType: 'xml', 
        cache: false, 
        error: function(){ 
            alert('出错了!'); 
            return false; 
        }, 
        success:function(data){ 
           alert($(data).find('int :eq(0)').text());
        } 
    });