如何将变量传递给jquery.getScript?

时间:2013-12-18 11:17:02

标签: javascript jquery ajax

我一直在关注jquery网站,但我不认为我对此很了解,因为我没有看到任何console.logs

$(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?');
        });
    });

1 个答案:

答案 0 :(得分:3)

脚本is executed in the global context,所以只是不传递参数(它们会影响脚本定义的那些):

$.getScript('script.js',function(){
    // use a, b and c here
    console.log(a);
});