gpt4 book ai didi

javascript - 仅在第一个图像上设置 jQuery attr()

转载 作者:行者123 更新时间:2023-11-28 15:32:24 24 4
gpt4 key购买 nike

从过去的问题中,我知道您可以为页面上的现有元素设置一个新的 attr() ,例如页面上图像的 ID,但在我的例子中,我只想为第一个图像设置一个 id。例如,其余 4 个未添加此 ID。

使用下面的代码,它会不断将 ID 添加到页面上的所有图像。

<script>
$( "img" ).attr( "id", "wp_featured_img" );
</script>

仅第一个img

最佳答案

您可以使用jQuery :first selector为了达成这个。您的代码将如下所示:

<script>
$( "img:first" ).attr( "id", "wp_featured_img" );
</script>

希望这有帮助!

关于javascript - 仅在第一个图像上设置 jQuery attr(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26811681/

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