“jQuery получите имя класса” Ответ

jQuery получите имя класса

//jQuery get class name of element 
var className=$('#myElementID').attr('class');
Grepper

Как получить имя класса в jQuery

var className = $('#sidebar').attr('class');
Cute Camel

Как найти имя класса из страницы в jQuery

if ($(".Mandatory").length > 0) {
    // Do stuff with $(".Mandatory")
    $(".Mandatory").each(function() {
        // "this" points to current item in looping through all elements with
        // class="Mandatory"
        $(this).doSomejQueryWithElement();
    }); 
}
Dev

Как найти имя класса из страницы в jQuery

$("input[type='submit']").click(function() {
    if ($(".Mandatory").length > 0) {
        // Do some code here
    }
});
Dev

Как найти имя класса из страницы в jQuery

if ($('.Mandatory').length > 0) {
  //do your thing
}
Dev

Как найти имя класса из страницы в jQuery

$('.Mandatory').each(function(){
  //do your thing
});
Dev

Ответы похожие на “jQuery получите имя класса”

Вопросы похожие на “jQuery получите имя класса”

Больше похожих ответов на “jQuery получите имя класса” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования