###HTML
<ul id="thiselement">
<li>test</li>
<li>timer</li>
<li>check</li>
<li>ramramesh</li>
<li>ramesh</li>
</ul>
###jQuery
document.write($("#thiselement li:not(:contains('ramesh'))").text());
###期待される結果
testtimercheckramramesh
###私が得ているもの
testtimercheck
どうすればこれを達成できますか?テキストが見つかった場所に返されることは理解してcontains
いますが、結果で each 関数を使用したいので、正確なテキストセレクターのみが必要です
$("#thiselement li:not(:contains('ramesh'))").each(function(){});