如何从给定的字符串开始获取特定类的元素?

时间:2013-03-19 16:56:23

标签: jquery html css twitter-bootstrap

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

<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 
});

11 个答案:

答案 0 :(得分:49)

您可以使用正则表达式或split班级名称。

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

http://jsfiddle.net/LQPh6/

答案 1 :(得分:16)

您也可以尝试:

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

使用匹配而不是grep ......

答案 2 :(得分: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;
        }
     });

  });

Live Demo

答案 3 :(得分: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

答案 4 :(得分:2)

你可以把btn变成自己的类。但是,这将有效。

$("div[class^='btn-']")

答案 5 :(得分:2)

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

答案 6 :(得分: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

答案 7 :(得分:1)

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

$('input[class~="btn-"]')

答案 8 :(得分:1)

btn开头并且不能成为第一个类的类:

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

$("input[class^='btn'],input[class*=' btn']").each(function(){
     //whatever
});

答案 9 :(得分: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'";

代码未经过测试。

答案 10 :(得分:1)

此函数可以使用 regex

获取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