-1
是否可以使用帶有單選按鈕的表單提交後鏈接到所選頁面?所以我選擇了第一個單選按鈕,點擊提交併獲取了url /angebote.html單選按鈕鏈接
Thx!
<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>
這就像一個魅力:http://stackoverflow.com/questions/6741340/radio-button-to-open-pages –