我在控制台中声明了一个变量“mediaId”,它一直告诉我它是未定义的。我究竟做错了什么?
var mediaId;
//load the XML!
$.ajax({
type: "GET",
url: '10461632.xml', // path to XML file
dataType: "xml",
success: function(data) {
$(data).find('Root').each(function(){
$(this).find('Item').each(function(){
mediaId = $(this).attr('videoMediaId'); // get the mediaId
console.log(mediaId);
});
});
}
});
在我的“jsonApiCall”变量中它告诉我它是未定义的。
var jsonpApiCall = "http://www.domain.com/search_media/?format=jason&school=" + vid_partner + "&media_id=" + mediaId + '';
非常感谢!