Nixchecker
Neues Mitglied
Wie kannn ich machen, wenn man eine checkbox nicht aktiviert hat den Submitbutton nicht bestätigen kann?
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.
JS. aber mit PHP geht das komfortabler und funktioniert immer.
Nils aka XraYSoLo
Außerdem kannst du nun wirklich nicht vorher schon wissen, das alle Besucher JS an haben!
<form action="index.php" method="post">
<input type="checkbox" name="check" value="2" onClick="activate()" id="1">
Diese Checkbox muss aktiviert sein!
</input>
<input type="submit" name="send" value="weiter" id="2" onMouseover="checkbox()"></input>
</form>
<script>
document.getElementById('2').disabled = true;
function activate()
{
if(document.getElementById('2').disabled == true)
{
document.getElementById('2').disabled = false;
}
else
{
document.getElementById('2').disabled = true;
}
}
function checkbox()
{
if(document.getElementById('1').checked != true)
{
document.getElementById('2').disabled = true;
}
}
</script>