0

说我有

<div id= "page">
<div class = "container">
<a href="http://www.google.com"></a>
</div>
</div> 

是否可以在“容器”中获取该 url,并且只能在“页面”中获取,并使用 jquery 将其放在 window.location.href 中?我知道可能有更好的方法可以访问该 URL,但我只想知道这是否可能。谢谢!

4

2 回答 2

4

由于您想要“容器”内的链接并且仅在“页面”内,因此选择器必须是

window.location = $('#page .container a').attr('href');
于 2012-05-14T07:32:31.610 回答
2
var url = $('#page .container a').attr('href');
window.location = url;
于 2012-05-14T07:32:37.677 回答