Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
function setValue()
{
iSel = window.document['AddForm']['AddSelect'].selectedIndex;
sVal = window.document['AddForm']['AddSelect'][iSel].value;
if (sVal != "none") {
window.document['AddForm']['Text'].value += sVal;
}
window.document['AddForm']['AddSelect'][0].selected = true;
}
[...]
<form name="AddForm" action="ziel.html" method="post">
<select name="AddSelect" onChange="setValue();">
<option value="none">--- Bitte wählen ---</option>
<option value="Wert1">Wert1</option>
<option value="Wert2">Wert2</option>
<select>
<br><br><br>
<textarea name="Text" style="width:500px;height:100px;"></textarea>
</form>