通过Javascript获取URL给出的页面内容

时间:2010-11-02 06:42:27

标签: javascript html url proxy hyperlink

这里有人解决了类似的问题吗?

我的链接只包含其他链接。

例如,给定一个URL,可以说它是www.abc123proxy.info。然后该URL在其页面上包含另一个URL(是的,只是文本),我们可以说这个URL的URL是www.masked-url.com?token=231940812093810。我需要转到第二个网址,但我只有第一个网址。

这就是我想要发生的事情:

$(document).ready(function() {window.location = 'www.abc123proxy.info';});
// But I wanted to go to the link inside the page of that URL.

使用javascript可以解决这个问题吗?如果你有的话,我愿意接受其他更好的解决方案。

谢谢!

1 个答案:

答案 0 :(得分:1)

$.ajax({
        url:'first_url',
        type:'get',
        success:function(data){
          var _newUrl=$(data).find('a:first');
        }
})