jQuery中是否有一个选择器,这将允许我选择所有具有href的锚标签,以href =“/ products / index?page =”开始?
我的全部href是href =“/ products / index?page = 2”,但是它们都有共同点.
解决方法
你可以使用
starts-with attribute selector,像这样:
$("a[href^='/products/index?page=']")
如果您好奇,还可以使用other attribute selectors.