链接出单选按钮

时间:2012-11-08 16:16:07

标签: forms url hyperlink submit

是否可以使用带有一些单选按钮的表单在提交后链接到所选页面?所以我选择了第一个单选按钮,点击了buttion提交并获得了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>

1 个答案:

答案 0 :(得分:0)

你可以使用这样的javascript。

<HTML> 
    <HEAD>
         <SCRIPT language="javascript"> 
              function choiceprop(form3) {
                   var url = <!-- check the good case here -->
                   window.location = url;
               } 
          </SCRIPT> 
    </HEAD> 
    <BODY>
        <FORM NAME="formtest">
             <INPUT TYPE="radio" NAME="choice" VALUE="url1">name1<BR>
             <INPUT TYPE="radio" NAME="choice" VALUE="url2">name2<BR> 
             <INPUT TYPE="radio" NAME="choice" VALUE="url3">name3<BR> 
             <INPUT TYPE="button"NAME="but" VALUE="Validate" onClick="choiceprop(formtest)">
        </FORM> 
   </BODY> 
</HTML>