コールバック関数の外部でグローバル変数を使用するのに最適な方法は何ですか?ajaxコールバック関数以外の変数を使用する
var icon;
$(function(){
$.get('data.xml', function(xml){
icon = xml.documentElement.getElementsByTagName("icon");
//this outputs a value
console.log(icon);
});
//this is null
//How can this maintain the value set above?
console.log(icon);
});
....なんですか? O_o –
あなたは何を達成しようとしていますか? – thejh
どのような値を維持できますか?あなたはより明確にする必要があります。 –