提交后是否可以使用带有一些单选按钮的表单链接到所选页面?所以我选择了第一个单选按钮,点击按钮提交并获得了 url /angebote.html
谢谢!
<form id="aktion">
<div class="action-check">
<input class="radio" type="radio" value="angebote.html" name="suche">
<label for="suche">Ich suche ein Zimmer</label>
</div>
<div class="action-check">
<input class="radio" type="radio" value="angebotseingabe.html" name="biete">
<label for="biete">Ich biete ein Zimmer</label>
</div>
<div class="action-check">
<input class="radio" type="radio" value="gesuchseingabe.html" name="gruenden">
<label for="gruenden">Ich möchte eine WG gründen</label>
</div>
<div class="submit_container">
<input class="submit" type="submit" value="Los geht's">
</div>
</form>