34

我有一个包含多个类的元素列表,例如:

<input class="etape btn-info others">
<input class="etape btn-inverse others">
<input class="etape btn-danger others">

如何编写允许我执行以下操作的 jQuery 代码...

$(".etape").click(function(){
   $(this).get("the class that starts with btn-")
   // in order to store this value in a variable to reuse it later 
});
4

11 回答 11

54

您可以使用正则表达式或split类名。

$(".etape").click(function(){
   var classes = $.grep(this.className.split(" "), function(v, i){
       return v.indexOf('btn') === 0;
   }).join();
});

http://jsfiddle.net/LQPh6/

于 2013-03-19T17:06:00.710 回答
21

你也可以试试:

$(".etape").click(function () {
    var theClass = $(this).attr("class").match(/btn[\w-]*\b/);
    console.log(theClass); 
});

使用 match 而不是 grep...

于 2013-03-19T17:34:00.103 回答
8
 // Only select input which have class 
 $('input[class]').click(function(){  
   var myClass;
   // classNames will contain all applied classes
   var classNames = $(this).attr('class').split(/\s+/);  

     // iterate over all class  
     $.each(classNames, function(index, item) {
        // Find class that starts with btn-
        if(item.indexOf("btn-") == 0){
          // Store it
          myClass = item;
        }
     });

  });

现场演示

于 2013-03-19T16:57:54.873 回答
6

将这些值存储在data属性中可能会更好:

<input class="etape others" data-btntype="info">
<input class="etape others" data-btntype="inverse">
<input class="etape others" data-btntype="danger">

然后:

 $(".etape").click(function(){
     var myBtnType = $(this).data('btntype');
 });

jsFiddle

于 2013-03-19T17:00:17.317 回答
2

你可以让 btn 成为它自己的类。但是,这将起作用。

$("div[class^='btn-']")
于 2013-03-19T16:59:37.590 回答
2

试试这个:$('input[class*='btn']').attr("class");

于 2013-03-19T16:59:45.503 回答
2

我刚刚将@Vohuman 的功能设置为可重复使用的功能:

// getClassStartsWith(classes,startswith);
// Example : getClassStartsWith( 'item w-2 h-4 hello' , 'h-' );
function getClassStartsWith(t,n){var r=$.grep(t.split(" "),function(t,r){return 0===t.indexOf(n)}).join();return r||!1}

例子...

HTML:

<div class="item w-2 h-4 hello"></div>

JS:

var $element = $('.item');
var classes = $element[0].className;
var getHeight = getClassStartsWith(classes,'h-');

那将返回h-4,如果没有类开始h-将返回false

演示: http: //jsbin.com/mijujunaca/edit ?js,console

于 2016-05-26T11:02:01.363 回答
1

这个怎么样? http://api.jquery.com/attribute-contains-word-selector/

$('input[class~="btn-"]')
于 2013-03-19T16:58:26.747 回答
1

以第一类开头btn且不能是第一类的类:

工作小提琴:http: //jsfiddle.net/c9Tdx/

$("input[class^='btn'],input[class*=' btn']").each(function(){
     //whatever
});
于 2013-03-19T16:59:43.860 回答
1

试试这个,

if($(selector).attr("class").lastIndexOf("classToStartFrom") == 0)
   return "this selector class name starts with 'classToStartFrom'";
else
   return "this selector class name doesn't start with 'classToStartFrom'";

代码未经测试。

于 2013-03-19T17:02:52.523 回答
1

此函数可以使用正则表达式获取 Class、ID、Data 和所有类型的属性

$.fn.Get_Attr_Regex = function(Pattern,Type) 
{
    Type = Type || 'class';
    var List_Str = this.attr(Type);

    if(typeof List_Str !== typeof undefined && List_Str !== false) 
    {
        var regex = new RegExp(Pattern, "g");
        var List_Array = List_Str.split(" ");
        for(var i = 0; i < List_Array.length; i++)
        {
            if(regex.test(List_Array[i]))
            {
                return List_Array[i];
            }
        }
    }
    return false;
};

使用它

$('.T_Header').Get_Attr_Regex('btn.*','class'); // => return class value which start with btnxxx

或者

$('.T_Header').Get_Attr_Regex('btn.*','id');  // => return id value which start with btnxxx

或者

$('.T_Header').Get_Attr_Regex('btn.*','data-info'); // => return data attribute value which start with btnxxx
于 2018-10-25T17:32:46.487 回答