如何在这个 jQuery 选择器中放置一个动态属性?

发布于 12-11 17:43 字数 254 浏览 0 评论 0原文

我有这个对象..

$object = $(".service-box:first").attr("rel")
# => "spaghetti"

我试图在选择器中找到这个对象..

$(".hqs-text[rel=$object]")

但这是在此选择器中使用动态变量的不适当方法。

我怎样才能正确地做到这一点?

谢谢!!!

I have this object..

$object = $(".service-box:first").attr("rel")
# => "spaghetti"

I am trying to find the this object inside of a selector..

$(".hqs-text[rel=$object]")

But this is an innapropriate way to use dynamic variables in this selector.

How can I do this correctly?

Thanks!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我三岁2024-12-18 17:43:50

简单的串联就可以了:

$(".hqs-text[rel=" + $object + "]");

或者甚至都在一行中:

$(".hqs-text[rel=" + $(".service-box:first").attr("rel") + "]");

Simple concatenation will do:

$(".hqs-text[rel=" + $object + "]");

Or even all in one line:

$(".hqs-text[rel=" + $(".service-box:first").attr("rel") + "]");
欢你一世2024-12-18 17:43:50
$(".hqs-text[rel="+$object+"]")
$(".hqs-text[rel="+$object+"]")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文