这里有人解决了类似的问题吗?
我的链接只包含其他链接。
例如,给定一个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可以解决这个问题吗?如果你有的话,我愿意接受其他更好的解决方案。
谢谢!
答案 0 :(得分:1)
$.ajax({
url:'first_url',
type:'get',
success:function(data){
var _newUrl=$(data).find('a:first');
}
})