How to parse xml attributes with jQuery alone?

后端 未结 3 1810
名媛妹妹
名媛妹妹 2020-12-31 04:57

I\'m already parsing xml successfully but i\'m stuck at getting an attribute of childrens.

XML Example:


    
        <         


        
3条回答
  •  感情败类
    2020-12-31 05:29

    try this out

    $.ajax({
        type: "GET",
        url: 'data.xml,
        dataType: "xml",
        success: function(xml) {
            $(xml).find('entry').each(function(){
                var $entry = $(this);
                var pic = $entry.find('picture').attr('url');
                alert(pic);
            })
        },
        error: function(xhr, status, error) {
            if (xhr.status != 404) {alert(error);} else {alert("404 xml not found");}
        }
    })
    

提交回复
热议问题