@@Gunnar Bittersmann
Das mit dem Clipboard-API kannst du ja genauso aus meinem Beispiel übernehmen.
Nur die Zeilen 6–14 (das Zusammenbauen des Strings) werden bei dir anders sein: Da musst du halt deine Checkboxen, Radiobuttons(?) und Texteingabefeld auswerten.
Kann dann so aussehen:
for (let checkbox of form.core) {
if (checkbox.checked) {
awayTeam += `${checkbox.value}\n`;
}
}
Schleife über alle Checkboxen, die in meinem Beispiel alle name="core"
tragen, also in form.core
gesammelt sind. Für gesetzte Checkboxen wird deren Wert an den String angehängt.
Noch den Wert des Freifeldes (sofern da was eingegeben wurde) dazu – fertig.
Nur dass bei dir weder der String noch das
output
-Elementworkdays
heißen sollte.
… und auch nicht awayTeam
.
😷 LLAP
--
“When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy.’ They told me I didn’t understand the assignment, and I told them they didn’t understand life.” —John Lennon
“When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy.’ They told me I didn’t understand the assignment, and I told them they didn’t understand life.” —John Lennon