Select div that ends with a class

2019-06-17 04:08发布

问题:

Like this one:

<div class="abc foo-something">

How can I select div that has a class ending in -something?

回答1:

@Einacio commented correct that $("div[class$='-something']") will not work for <div class="foo-something abc">. To select and this case you can add a second selector, with the following result:

$("div[class$='-something'],div[class*='-something ']")

This will select and classes that ending with -something and a space follows.

Check this for more info.