我一直在尋找在jQuery的網站,但我不覺得我很瞭解這個,因爲我沒有看到任何console.logs如何將變量傳遞給jquery.getScript?
$(document).ready(function(){
var a=[1,2,3];
var b='foo';
var c={'bar':'baz'};
$.getScript('script.js',function(a,b,c){
console.log('how can i see a='+a+', b='+b+' and c='+c+' inside here?');
});
});
這個作品在這裏:http://jsfiddle.net/rYQkx/沒有redifining變量作爲本地 –