-1

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

1 回答 1

1

你可以像这样使用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> 
于 2012-11-08T16:30:12.430 回答