“jQuery a un attribut” Réponses codées

jQuery Vérifiez si l'attribut existe

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 si attribut

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

jQuery a un 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

Réponses similaires à “jQuery a un attribut”

Questions similaires à “jQuery a un attribut”

Plus de réponses similaires à “jQuery a un attribut” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code