Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
. Oder muss ich dafür auch schon PHP bemühen?
<div id="apDiv2">
anzeigen()
alert (document.form1.select.value);
</div>
<div id="apDiv1" style="position:absolute; width:55px; height:40px; z-index:1; left: 261px; top: 135px;">
<form name="form1" method="post" action="">
<select name="select" onchange="anzeigen();" size="1">
<option>1234567</option>
<option>2365478</option>
<option>2121245</option>
<option>2525236</option>
<option>2545214</option>
<option>2525252</option>
</select>
</form>
</div>
<script type="text/javascript">
anzeigen(){
alert (document.form1.select.value);
}</script>
Warum darf man denn keine Layer setzen?
Dann zerhaut es mir ja mein ganzes Layout.
<script language="JavaScript" type="text/JavaScript">
anzeigen()
alert (document.form1.select.value);
<div id="Layer1" style="position:absolute; width:55px; height:28px; z-index:1; left: 261px; top: 135px;">
<form name="form1" method="post" action="">
<select name="select" onchange="anzeigen();" size="1">
<option>1234567</option>
<option>2365478</option>
<option>2121245</option>
<option>2525236</option>
<option>2545214</option>
<option>2525252</option>
</select>
</form>
</div>
<script type="text/javascript">
function anzeigen() {
document.getElementById("meinPTag").firstChild.data = document.form1.select.value;
}
</script>
<script language="JavaScript" type="text/JavaScript">
anzeigen(){
alert (document.form1.select.value);
}
</script>
<div id="Layer1" style="position:absolute; width:55px; height:28px; z-index:1; left: 261px; top: 135px;">
.....