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.
我需要像这样选择所有ID:
r1 r2 r3 等,没有像 helloWorld 这样的其他 id
我尝试将 css 选择器与 jQuery 一起使用,但我不明白如何。我尝试 $('#r[0-9]') 但不起作用。
泰!
ID 选择器 ( #) 仅适用于特定 ID。您想使用属性选择器。
#
$("[id^=r]")