Is there a wildcard selector for identifiers (id)?

前端 未结 9 1678
臣服心动
臣服心动 2020-12-04 14:59

If I have an unknown amount of identifiers sharing a specific naming-scheme, is there a way to grab them all at once using jQuery?

// These are the IDs I\'d          


        
9条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-04 15:55

    No need for additional expr or anything fancy if you have jQuery

    jQuery('[class*="someclass"]').click(function(){
    });
    
    jQuery('[id*="someclass"]').click(function(){
    });
    

    As noted: https://stackoverflow.com/a/2220874/2845401

提交回复
热议问题