函数返回值“undefined”

时间:2015-10-10 16:17:27

标签: javascript jquery

我读了一个xml文件作为输入。我收到“undefined”作为我的返回值,而当我在上面发出一条警告信息时,我得到了正确答案! 我在this主题中检查了一个类似的问题,但它对我不起作用。 寻求帮助!

<script>
function FindingChildrenWithFather(Father)
{
	var NodesDetails = [];
		$.get('Flow.xml', function(d){
        		$(d).find('User').each(function(){
		        	if ($(this).attr("SenderId") == Father) 
				{
					NodesDetails.push($(this).attr("Id") );
			        }
			});
		});
                //alert();
		return NodesDetails;
	}	
 	$(document).ready(function(){ 
 		var xx = FindingChildrenWithFather('');
		alert (xx);
	});
</script>

0 个答案:

没有答案