选择器类可以是:
c-1
c-2
c-3
(etc...)
选择器也可以有其他类,所以这里是一个可能的HTML的例子:
<div class="foo c-2 foofoo"></div>
我想在c
之后得到这个数字。在这种情况下 - 我会得到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