“Удалите текст и держите div внутри Div jQuery 2” Ответ

Удалите текст и держите div внутри 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

Удалите текст и держите div внутри 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

Ответы похожие на “Удалите текст и держите div внутри Div jQuery 2”

Вопросы похожие на “Удалите текст и держите div внутри Div jQuery 2”

Больше похожих ответов на “Удалите текст и держите div внутри Div jQuery 2” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования