Risposte:
$('b').contents().unwrap();
Questo seleziona tutti gli <b>
elementi, quindi utilizza.contents()
come target il contenuto del testo di <b>
, quindi.unwrap()
rimuove il suo <b>
elemento genitore .
Per le migliori prestazioni, diventa sempre nativo:
var b = document.getElementsByTagName('b');
while(b.length) {
var parent = b[ 0 ].parentNode;
while( b[ 0 ].firstChild ) {
parent.insertBefore( b[ 0 ].firstChild, b[ 0 ] );
}
parent.removeChild( b[ 0 ] );
}
Questo sarà molto più veloce di qualsiasi soluzione jQuery fornita qui.
.replacewith()
causa del traversal DOM aggiuntivo ... se è un <b>
tag con solo HTML diventa ancora più veloce.
parent.normalize()
dopo parent.removeChild(...
per unire i nodi di testo adiacenti. Ciò è stato utile se si modifica continuamente la pagina.
Puoi anche usare .replaceWith()
, in questo modo:
$("b").replaceWith(function() { return $(this).contents(); });
O se sai che è solo una stringa:
$("b").replaceWith(function() { return this.innerHTML; });
Questo può fare una grande differenza se stai scartando molti elementi poiché uno dei due approcci sopra è significativamente più veloce del costo di .unwrap()
.
Il modo più semplice per rimuovere elementi html interni e restituire solo testo sarebbe la funzione .text () di JQuery .
Esempio:
var text = $('<p>A nice house was found in <b>Toronto</b></p>');
alert( text.html() );
//Outputs A nice house was found in <b>Toronto</b>
alert( text.text() );
////Outputs A nice house was found in Toronto
Cosa ne pensi di questo?
$("b").insertAdjacentHTML("afterend",$("b").innerHTML);
$("b").parentNode.removeChild($("b"));
La prima riga copia il contenuto HTML del b
tag nella posizione direttamente dopo il b
tag, quindi la seconda riga rimuove il b
tag dal DOM, lasciando solo i contenuti copiati.
Normalmente lo avvolgo in una funzione per facilitarne l'uso:
function removeElementTags(element) {
element.insertAdjacentHTML("afterend",element.innerHTML);
element.parentNode.removeChild(element);
}
Tutto il codice è in realtà puro Javascript, l'unico JQuery utilizzato è quello di selezionare l'elemento di destinazione (il b
tag nel primo esempio). La funzione è semplicemente JS: D
Guarda anche:
// For MSIE:
el.removeNode(false);
// Old js, w/o loops, using DocumentFragment:
function replaceWithContents (el) {
if (el.parentElement) {
if (el.childNodes.length) {
var range = document.createRange();
range.selectNodeContents(el);
el.parentNode.replaceChild(range.extractContents(), el);
} else {
el.parentNode.removeChild(el);
}
}
}
// Modern es:
const replaceWithContents = (el) => {
el.replaceWith(...el.childNodes);
};
// or just:
el.replaceWith(...el.childNodes);
// Today (2018) destructuring assignment works a little slower
// Modern es, using DocumentFragment.
// It may be faster than using ...rest
const replaceWithContents = (el) => {
if (el.parentElement) {
if (el.childNodes.length) {
const range = document.createRange();
range.selectNodeContents(el);
el.replaceWith(range.extractContents());
} else {
el.remove();
}
}
};
Un'altra soluzione nativa (nel caffè):
el = document.getElementsByTagName 'b'
docFrag = document.createDocumentFragment()
docFrag.appendChild el.firstChild while el.childNodes.length
el.parentNode.replaceChild docFrag, el
Non so se sia più veloce della soluzione di user113716, ma potrebbe essere più facile da capire per alcuni.
La risposta più semplice è strabiliante:
Ecco come farlo con javascript anche senza jQuery
function unwrap(selector) {
var nodelist = document.querySelectorAll(selector);
Array.prototype.forEach.call(nodelist, function(item,i){
item.outerHTML = item.innerHTML; // or item.innerText if you want to remove all inner html tags
})
}
unwrap('b')
Questo dovrebbe funzionare in tutti i principali browser incluso il vecchio IE. nel browser recente, possiamo persino chiamare ogni elemento direttamente nella lista dei nomi.
function unwrap(selector) {
document.querySelectorAll('b').forEach( (item,i) => {
item.outerHTML = item.innerText;
} )
}
unwrap()
e non riuscivo a ricordare come ottenere la parte di testo, ho dimenticato.contents()
- eccellente.