Hi Andreas,
danke nochmal für Deine ausführliche Hilfe. Es klappt jetzt alles. Damit Du siehst, dass ich meine Hausaufgaben gemacht habe:
var XTabelle = document.createElement("table");
var XId = document.createAttribute("id");
XId.nodeValue = "Artikel";
XTabelle.setAttributeNode(XId);
var XClass = document.createAttribute("class");
XClass.nodeValue = "Artikel";
XTabelle.setAttributeNode(XClass);
var XTBody = document.createElement("tbody");
XTabelle.appendChild(XTBody);
var XZeile = document.createElement("tr");
XTBody.appendChild(XZeile);
var XSpalte = document.createElement("td");
XZeile.appendChild(XSpalte);
var XAbschnitt = document.createElement("p");
XSpalte.appendChild(XAbschnitt);
var XText = document.createTextNode("Test-Text in der Tabellenzelle");
XAbschnitt.appendChild(XText);
var Ausgabebereich = document.getElementById("suchergebnis")
Ausgabebereich.appendChild(XTabelle);
XTabelle.appendChild(XTBody);
XTBody.appendChild(XZeile);
XZeile.appendChild(XSpalte);
XSpalte.appendChild(XAbschnitt);
XAbschnitt.appendChild(XText);
Grüße
Tim