Find all elements on a page whose element ID contains a certain text using jQuery

前端 未结 4 864
既然无缘
既然无缘 2020-11-30 18:36

I\'m trying to find all elements on a page whose element ID contains a certain text. I\'ll then need to filter the found elements based on whether they are hidden or not. An

4条回答
  •  情深已故
    2020-11-30 18:59

    This selects all DIVs with an ID containing 'foo' and that are visible

    $("div:visible[id*='foo']");
    

提交回复
热议问题