多形式问题

时间:2010-08-05 15:39:06

标签: html forms

我有一个接一个的2个表格,但第二个表格根本没有发布。除了提交,一切正常。我可以有2个这样的表格吗?

 <form action="getRates.php" name="rates" method="post" onSubmit="popupform(this, 'join')">
                          <table style="width: 216px">
                            <tr>
                              <td style="width: 115px; height: 49px;"><span class="style16">Weight</span><br/>
                                  <input type="text" id="weight" name="weight" size="10" maxlength="4"/>
                                  <input type="hidden" id="weightOne" name ="weightOne">
                                  <input type="hidden" id="weightTwo" name ="weightTwo">
                                  <input type="hidden" id="weightThree" name="weightThree">
                                  <input type="hidden" id="weightFour" name="weightFour">
                              </td>
                              <td align="right" style="width: 68px; height: 49px;" valign="top"><span class="style16">Zip Code</span><br/>
                                  <input type="text" id="zip" name="zip" size="10" maxlength="5"/>
                              </td>
                            </tr>
                            <tr>
                              <td style="width: 115px">
                              <input name="submit" type="submit" value="Door Hanger Rates" style="width: 138px" />
                              </td>
                            </tr>
                          </table>
                          </form>
                         <form action="getBusinessRates.php" name="businessRates" method="post" onSubmit="popupform(this, 'join')">
                          <table style="width: 216px">
                            <tr>
                              <td style="width: 115px; height: 49px;"><span class="style16">Weight</span><br/>
                                  <input type="text" id="businessWeight" name="businessWeight" size="10" maxlength="4" />
                              </td>
                              <td align="right" style="width: 68px; height: 49px;" valign="top"><span class="style16">Zip Code</span><br/>
                                  <input type="text" id="businessZip" name="businessZip" size="10" maxlength="5" />
                              </td>
                            </tr>
                            <tr>
                              <td style="width: 115px">
                              <input name="businessSubmit" type="submit" value="Business Card Rates" style="width: 138px" />
                              </td>
                            </tr>
                          </table>
                         </form>

1 个答案:

答案 0 :(得分:1)

您的相同代码正在运行,you can check it out here。可能还有其他一些问题。

相关问题