字符串中的jQuery选择器通配符

时间:2013-07-13 21:45:17

标签: jquery jquery-selectors

链接

  

http://domain.com/ [random] /#foo

     

http://domain.com/ [随机] /酒吧

如何选择以http://domain.com/开头,然后选择通配符([随机])然后#?

的链接

2 个答案:

答案 0 :(得分:10)

你可以这样做:

$('a[href^="http://domain.com/"][href$="#foo"]');

选择a元素,hrefhttp://domain.com/开头,以#foo结尾。

如果您不关心foo部分而只关心哈希,请改用:

$('a[href^="http://domain.com/"][href*="#"]');

选择的第二部分是“包含”过滤器。

答案 1 :(得分:0)

这样的东西?

$("a[href^=http://domain.com/]")

查看StartWith selector