3

1つの送信ボタンに2つのフォームアクションを入れることは可能ですか?? ユーザーは 2 つのラジオ ボタンを選択でき、フォーム アクションごとに URL が新しいウィンドウで同時に開きます。どうすればいいのかわからず、コーディングの知識もあまりありません。このコードは私のものではなく、変更したいだけです。:(

コードは次のとおりです。

<form action="http://thegreatpromocode.tk/lite/jonsnow/subscribe" method="post" class="form-subscribe-
promo" target="foo" onsubmit="window.open
('','foo','width=450,height=250,status=no,resizable=no,scrollbars=no')">

        <input type="radio" name="promo_code" value="BlueGem">BlueGem<br>
        <input type="radio" name="promo_code" value="RedGem">RedGem<br>
        <input type="radio" name="promo_code" value="GreenGem">GreenGem<br>
        <input type="radio" name="promo_code" value="WhiteGem">WhiteGem<br>
        <input type="radio" name="promo_code" value="YellowGem">YellowGem<br>
        <input type="radio" name="promo_code" value="DarkGem">DarkGem<br>
        <input type="radio" name="promo_code" value="OrangeGem">OrangeGem<br>
        <input type="radio" name="promo_code" value="VioletGem">VioletGem<br>
        <input type="hidden" name="subscriber" value="temporary">
        <input type="hidden" name="promo_name" value="GemStone"><hr>
        <center><input type="text" name="User ID" size="18" onblur="if

(this.value=='')

{this.value='ID Number';}" onfocus="if(this.value=='ID Number'){ 

this.value='';}" value="11-Digit Mobile Number">
        <input type="submit" value="Confirm"></form>
4

1 に答える 1

0

これを試して:

<form action="http://thegreatpromocode.tk/lite/jonsnow/subscribe" 
    method="post" 
    class="form-subscribe-promo" 
    target="_blank" 
    onsubmit="
            window.open('http://www.google.com','New Window 1','width=450,height=250,status=no,resizable=no,scrollbars=no');
            window.open('http://www.stackoverflow.com','New Window 2','width=450,height=250,status=no,resizable=no,scrollbars=no');
            return false;">
于 2012-12-24T07:12:13.297 に答える