gpt4 book ai didi

带有变量的 jQuery 选择器

转载 作者:行者123 更新时间:2023-12-03 21:28:30 25 4
gpt4 key购买 nike

如何将变量与选择器混合使用?

我有 ID 变量。

我想从 div #one 中选择具有此 id 的图像。

jQuery('#one img .id') 是选择器。我尝试过 $('#one img .'+id) 但不起作用。

最佳答案

编辑:根据您下面的评论,您将使用此:

$('#one img.'+id)

在您的问题中,img.class 之间有一个空格,我只是将其删除,以便您得到 img.classNameimg.'+className

随着template literals的介绍在 ECMAScript 2015 中,你还可以这样做

$(`#one img.${id}`)

关于带有变量的 jQuery 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4893436/

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