gpt4 book ai didi

jquery - jquery中如何选择元素的祖 parent

转载 作者:行者123 更新时间:2023-12-01 01:32:20 25 4
gpt4 key购买 nike

在我的网站中,我有以下代码。我想获取作为 iframe 祖父的 anchor 元素的 href。从 iframe 启动时如何获取 anchor 元素的 href

<a href="https://www.google.co.in/?gfe_rd=cr&ei=LrrLVpa7BuKK8Qf7wo_wCg&gws_rd=ssls" >
<section class="section">
<iframe width="560" height="318" class="product-card-media" src="https://www.youtube.com/embed/ZLls1Wn6070?rel=0&amp;autohide=0&amp;modestbranding=1&amp;showinfo=0&amp;enablejsapi=1" frameborder="0" enablejsapi="1" allowfullscreen="" id="fitvid1"></iframe>
</section>
</a>

最佳答案

要遍历 DOM 树,请使用 closest

$("button").on('click', function() {
$("#href").html($("iframe").closest("a").prop("href"));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>

<a href="https://www.google.co.in/?gfe_rd=cr&ei=LrrLVpa7BuKK8Qf7wo_wCg&gws_rd=ssls" >
<section class="section">
<iframe width="560" height="318" class="product-card-media" src="https://www.youtube.com/embed/ZLls1Wn6070?rel=0&amp;autohide=0&amp;modestbranding=1&amp;showinfo=0&amp;enablejsapi=1" frameborder="0" enablejsapi="1" allowfullscreen="" id="fitvid1"></iframe>
</section>
</a>

<button>Get Href</button>

<p id="href"></p>

关于jquery - jquery中如何选择元素的祖 parent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35567382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com