jQuery获取以字符串开头的类

时间:2013-09-15 09:25:20

标签: jquery class startswith

选择器类可以是:

c-1
c-2
c-3
(etc...)

选择器也可以有其他类,所以这里是一个可能的HTML的例子:

<div class="foo c-2 foofoo"></div>

我想在c之后得到这个数字。在这种情况下 - 我会得到2

我该怎么做?

2 个答案:

答案 0 :(得分:11)

尝试

var el = $('.c-2')//get the element whose class value has to be extracted
var val = el.attr('class').match(/\bc-(\d+)\b/)[1]

答案 1 :(得分:1)

如果您确定班上没有其他整数

尝试

var s ="foo c-2 foofoo";
var result = /\d+(?:\.\d+)?/.exec(s);
alert(result);  //2 is the result

Fiddle