我的代碼是這樣的,我試圖用jQuery函數的結果填充表單域。但它不起作用。我在這裏做錯了什麼?它記錄結果到控制檯罰款,包括散列和數組:如何使用通過jQuery獲得的變量?
jQuery(document).ready(function() {
new GetBrowserVersion().get(function(result, components){
console.log(result); //a hash
console.log(components); //an array
});
var unique_id = result;
$('#unique_id').val(unique_id);
});
我所得到的是這樣的:
Uncaught ReferenceError: result is not defined
其次是哈希和數組。
可能重複[如何從異步調用返回響應?](http://stackoverflow.com/questions/14220321/how-do-i-return-the-response-from-an - 異步呼叫) –