jquery – 根据部分href选择链接

前端之家收集整理的这篇文章主要介绍了jquery – 根据部分href选择链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jQuery中是否有一个选择器,这将允许我选择所有具有href的锚标签,以href =“/ products / index?page =”开始?

我的全部href是href =“/ products / index?page = 2”,但是它们都有共同点.

解决方法

你可以使用 starts-with attribute selector,像这样:
$("a[href^='/products/index?page=']")

如果您好奇,还可以使用other attribute selectors.

原文链接:https://www.f2er.com/jquery/176209.html

猜你在找的jQuery相关文章