“JQuery hat Attribut” Code-Antworten

jQuery überprüfen, ob ein Attribut vorhanden ist

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 wenn Attribut

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

JQuery hat Attribut

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

Ähnliche Antworten wie “JQuery hat Attribut”

Fragen ähnlich wie “JQuery hat Attribut”

Weitere verwandte Antworten zu “JQuery hat Attribut” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen