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.
<script type="text/javascript">
<!--
function Auswerten()
{
var punkte = 0;
punkte += parseInt(document.getElementById('Wohnort').value);
if(punkte >= 3)
{
window.location.URL('3.htm')
}
else
{
{
window.location.URL('0.htm')
}
}
}
//-->
</script>
Fragst du die Habbos nach ihrem Wohnort?
<input type="radio" name="Wohnort" id="Wohnort" value="3">Ja
<input type="radio" name="Wohnort" id="Wohnort" value="0">Nein
<input type="button" value="Absenden" onClick="Auswerten();">
<div id="ausgabe"></div>
window.location.URL
window.location.href
Jupp, das stimmt!Meiner Meinung nach mach man das mit window.location.href
<script type="text/javascript">
<!--
function Auswerten()
{
var punkte = 0;
punkte += parseInt(document.getElementById('Wohnort').value);
punkte += parseInt(document.getElementById('Alter').value);
if(punkte =3)
{
window.location.href="3.htm";
}
else if(punkte ==0)
{
window.location.href="0.htm";
}
}
else if(punkte ==6)
{
window.location.href="3.htm";
}
}
//-->
</script>
Fragst du die Habbos nach ihrem Wohnort?
<input type="radio" name="Wohnort" id="Wohnort" value="3">Ja
<input type="radio" name="Wohnort" id="Wohnort" value="0">Nein
Fragst du die Habbos nach ihrem Alter?
<input type="radio" name="Alter" id="Alter" value="3">Ja
<input type="radio" name="alter" id="Alter" value="0">Nein
<input type="button" value="Absenden" onClick="Auswerten();">
<div id="ausgabe"></div>