Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$(".singleMember[data-id='+id+']");
id是一个变量,它不能这样工作,没有错误。 这个怎么选的?
id
开始。我认为您在使用“和”时遇到了字符串常量问题。因此,我将 id 添加到您的字符串中“。
$(".singleMember[data-id='"+id+"']");