假设我有:
<li id="1">Mary</li>
<li id="2">John, Mary, Dave</li>
<li id="3">John, Dave, Mary</li>
<li id="4">John</li>
如果我需要查找包含“ John”和“ Mary”的所有<li>元素,我将如何构造jQuery?
搜索单个字符串似乎很容易:
$('li:contains("John")').text()
我正在寻找类似以下伪代码的内容:
$('li:contains("John")' && 'li:contains("Mary")').text()
谢谢!