unable to load xml from external file using jQuery

前端 未结 2 851
一整个雨季
一整个雨季 2020-11-30 15:49

I\'m trying to load external xml using the following code but it is not working

$( document ).load( \"data.xml\", function(  response, status, xhr ) {               


        
2条回答
  •  半阙折子戏
    2020-11-30 16:17

    Maybe this is what you are looking for....

    $(document).ready(function(){
        $.ajax({
            url: 'data.xml',
            dataType: 'xml',
            success: function(response, status, xhr){
               console.log( xhr.status + " " + xhr.statusText );
            }
         });
    });
    

    UPDATE

    Read this post

提交回复
热议问题