“JQuery verifique se o elemento ainda existe” Respostas de código

JQuery verifique se o elemento existe

// Check if an element currently exists
if ($('#element').length) {

}
Ugly Unicorn

existe um teste de teste jQuery

$(document).ready(function() {
    var $myDiv = $('#DivID');

    if ( $myDiv.length){
        //you can now reuse  $myDiv here, without having to select it again.
    }


});
GBShape

JQuery verifique se o elemento ainda existe

$(function() {
    var $button = $(".the_button");
    alert (isStale($button));
    $button.remove();
    alert (isStale($button));
});
    
function isStale($elem)
{
    return $elem.closest("body").length > 0;
};
Nervous Nightingale

Respostas semelhantes a “JQuery verifique se o elemento ainda existe”

Perguntas semelhantes a “JQuery verifique se o elemento ainda existe”

Mais respostas relacionadas para “JQuery verifique se o elemento ainda existe” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código