根据部分href选择链接

时间:2010-07-20 00:01:32

标签: jquery css-selectors

jQuery中是否有选择器允许我选择hrefhref="/products/index?page="开头的所有锚标记?

我的完整href是href="/products/index?page=2",但它们都有共同点。

3 个答案:

答案 0 :(得分:24)

您可以使用starts-with attribute selector,如下所示:

$("a[href^='/products/index?page=']")

如果您感到好奇,也可以使用other attribute selectors

答案 1 :(得分:4)

Attribute starts with selector

$("a[href^='/products/index?page=']")

答案 2 :(得分:2)

您想使用jquery starts with psuedo selector

$('[href^=/products/index?page=]')