如何将变量和字符串传递到同一个 jQuery 选择器中?
我有以下内容:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将两个字符串连接在一起:
You need to concatenate the two strings together: