开发者

jQuery not first selector found by attributeContains

开发者 https://www.devze.com 2022-12-22 06:37 出处:网络
I have a problem with sele开发者_StackOverflowcting \"not first selector\" using attributeContains

I have a problem with sele开发者_StackOverflowcting "not first selector" using attributeContains

jQuery('div[id*="abc"]:not(:first)').hide();


Try to chain it like this:

jQuery('div[id*="abc"]').not(':first').hide();
0

精彩评论

暂无评论...
验证码 换一张
取 消