gpt4 book ai didi

jquery - 为什么 jQuery 不接受这个字符串?

转载 作者:行者123 更新时间:2023-12-01 00:46:52 26 4
gpt4 key购买 nike

当我运行这个函数时:

onUnCheck: function(el) {
var thenames = "icon-"+el.find("label:first").text().replace(/ /g,'').toLowerCase();
alert(thenames);
$("'."+thenames+"'").hide("fast");
}

我生成一个字符串。我可以在alert()中看到它确实是正确的字符串。示例:

icon-jira

但是当我将字符串作为 jQuery 选择器传递时,它不起作用。

我知道该函数的逻辑是合理的,因为粘贴我的alert()的结果使其可以工作。

为什么 jQuery 不接受我的字符串?

最佳答案

$('.'+thenames).hide("fast");

这将查找“.icon-jira”。您正在寻找“'.icon-jira'”,它将引号添加到选择器中。

关于jquery - 为什么 jQuery 不接受这个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3762784/

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