开发者

Select div that ends with a class

Like this one:

<div clas开发者_如何学运维s="abc foo-something">

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


@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.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜