:contains for multiple words

后端 未结 4 1274
小蘑菇
小蘑菇 2021-01-13 19:49

I am using the following jQuery

var etag = \'kate\'
if (etag.length > 0) {
    $(\'div\').each(function () {
        $(this).find(\'ul:not(:contains(\' +         


        
4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-13 20:14

    Another approach:

    var etag='Some text from server';
    
    if (etag.length > 0) {
        $('div ul').each(function () {
            var el = $(this); // Local reference
            (el.html() === etag) ? el.show() : el.hide(); 
        });
    }​
    

提交回复
热议问题