“Usuń tekst i trzymaj Div wewnątrz Div JQuery 2” Kod odpowiedzi

Usuń tekst i trzymaj Div wewnątrz Div JQuery 2

$(function() {
  $("#to-clean, #to-clean *")                  // selects the element and all element nodes inside it
    .contents()                                // selects all child nodes including tags, comments and text
    .filter(function() {
      return this.nodeType === Node.TEXT_NODE; // filter text nodes
    }).remove();                               // boom!
});
Selim Soufargi

Usuń tekst i trzymaj Div wewnątrz Div JQuery 2

$(function() {
  $("#to-clean, #to-clean *")                  // selects the element and all element nodes inside it
    .contents()                                // selects all child nodes including tags, comments and text
    .filter(function() {
      return this.nodeType === Node.TEXT_NODE; // filter text nodes
    }).remove();                               // boom!
});
Selim Soufargi

Odpowiedzi podobne do “Usuń tekst i trzymaj Div wewnątrz Div JQuery 2”

Pytania podobne do “Usuń tekst i trzymaj Div wewnątrz Div JQuery 2”

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

Przeglądaj inne języki kodu