使用通配符和JQuery匹配属性值

时间:2017-03-30 04:43:09

标签: jquery css cheerio

我有一个这样的选择器:

$('link[href="../../../target/test/css/index.css"]')

../target/之后的部分可以是任何内容。如何在jquery中指定通配符?这是我正在寻找的一个全球模式:

$('link[href="../../../target/**/*.css"]')

1 个答案:

答案 0 :(得分:1)

本身没有通配符 ,但您可以合并starts with (^=)ends with ($=)选择器以达到您想要的效果:

tableView.reloadData()

jQuery配备了许多有用的属性选择器,可以帮助解决这类问题 - 您可以在https://api.jquery.com/category/selectors/attribute-selectors/查看它们。