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.
链接
http://domain.com/[随机]/#foo http://domain.com/[随机]/bar
http://domain.com/[随机]/#foo
http://domain.com/[随机]/bar
如何选择以http://domain.com/开头的链接,然后是通配符 ([random]),然后是 #?
你可以这样做:
$('a[href^="http://domain.com/"][href$="#foo"]');
选择a具有以href开头http://domain.com/和结尾的元素#foo。
a
href
http://domain.com/
#foo
如果您不关心该foo部分而只关心哈希,请改用它:
foo
$('a[href^="http://domain.com/"][href*="#"]');
选择的第二部分是“包含”过滤器。
像这样的东西?
$("a[href^=http://domain.com/]")
看看StartWith 选择器