如何找到<a> element that has an href value that contains two given strings</a>

时间:2014-03-29 02:55:15

标签: javascript jquery html

这样的事情:

$("a[href*='string1' && 'string2']")

我尝试了该代码但没有成功。我也尝试过:

$("a:contains('string1' && 'string2')")

那只是给了我一个包含字符串2的元素。我该怎么做呢?提前谢谢。

1 个答案:

答案 0 :(得分:5)

您可以合并两个attribute selector,使其成为and操作。

尝试,

$("a[href*='string1'][href*='string2']")