“JQuery ma atrybut” Kod odpowiedzi

JQuery Sprawdź, czy istnieje atrybut

var attr = $(this).attr('name');

// For some browsers, `attr` is undefined; for others,
// `attr` is false.  Check for both.
if (typeof attr !== typeof undefined && attr !== false) {
    // ...
}
LemonzDEV

JQuery Jeśli atrybut

if ( $('html').attr('lang') == 'fr-FR' ) {
    // do this
} else {
    // do that
}
Ugliest Unicorn

JQuery ma atrybut

var attr = $(this).attr('name');

// For some browsers, `attr` is undefined; for others,
// `attr` is false.  Check for both.
if (typeof attr !== 'undefined' && attr !== false) {
    // ...
}
Tristian Potgieter

Odpowiedzi podobne do “JQuery ma atrybut”

Pytania podobne do “JQuery ma atrybut”

Więcej pokrewnych odpowiedzi na “JQuery ma atrybut” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu