“Hapus teks dan simpan div di dalam jQuery div” Kode Jawaban

Hapus teks dan simpan div di dalam jQuery div

$(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

Hapus teks dan simpan div di dalam jQuery div

$(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

Hapus teks dan simpan div di dalam jQuery div

$(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

Hapus teks dan simpan div di dalam jQuery div

$(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

Jawaban yang mirip dengan “Hapus teks dan simpan div di dalam jQuery div”

Pertanyaan yang mirip dengan “Hapus teks dan simpan div di dalam jQuery div”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya