Ich möchte Javascript verwenden, um einige Elemente in die aktuelle Seite einzufügen. Dies ist zum Beispiel das Originaldokument: <p>Hallo Welt!</p>
Jetzt möchte ich ein Element in den Text einfügen, so dass er zu einem Element wird:
<p>Hallo <span id=span1>neue</span> Welt!</p>
I need the span tag because I want to handle it later.Show or hide. But now problem comes out, if the original page has already defined a strange CSS style on all <span> tags, the "new" I just inserted will not appear to be the same as "Hello" and "world". How can I avoid this? I want the "new" be exactly the same as the "Hello" and "world".