如何将变量和字符串传递到同一个 jQuery 选择器中?

发布于 2024-09-13 19:46:39 字数 401 浏览 3 评论 0原文

我有以下内容:

var x = '.'+this.id;  

这不起作用:

$(x,'#thumb').show();

但这确实:

$(x).show();

显然也是如此:

$('#thumb').show();

我缺少什么?我应该做其他事情来通过 jQuery 传递变量(甚至是它们自己的变量)吗?

I have the following:

var x = '.'+this.id;  

and this does not work:

$(x,'#thumb').show();

but this does:

$(x).show();

and obviously so does this:

$('#thumb').show();

What am I missing? Should I be doing something else in general to pass variables (even on their own) through jQuery?

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

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

发布评论

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

评论(1

有木有妳兜一样 2024-09-20 19:46:39

您需要将两个字符串连接在一起:

$(x+',#thumb').show();

You need to concatenate the two strings together:

$(x+',#thumb').show();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文