.getScript获取javascript的重定向url

时间:2010-05-09 05:04:39

标签: asp.net javascript asp.net-ajax jquery

我想执行一个远程javascript,它将用户重定向到我域上的另一个页面,其中的数据作为查询字符串传递。我希望将这些数据传递到我的域名页面上。

        $.getScript('http://site.com/foo.js', function() {
            //foo.js redirects to another page on my domain with data
            // and i d like to capture that data from this function, 
            // at least if i find the parameters that passed on there, i ll be fine.  
        });

怎么办?

http://api.jquery.com/jQuery.getScript/

1 个答案:

答案 0 :(得分:0)

我不确定您是否可以从其他域进行ajax调用。

$.getScript()这是一个简写的Ajax函数,相当于:

$.ajax({
  url: url,
  dataType: 'script',
  success: success
});

为什么需要从网址获取脚本?你不能自己实现,我的意思是,创建一个副本并将其重构到你的网站,改变你需要的东西,删除你需要的任何东西。

你可以100%访问任何你想要的东西..

是否有强制要求您这样做的要求?