jQuery中是否有选择器允许我选择href
以href="/products/index?page="
开头的所有锚标记?
我的完整href是href="/products/index?page=2"
,但它们都有共同点。
答案 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=]')