非常简单的html问题。。一个页面上两个输入框,两个按钮,如何提交各自的内容到不同的地方?
就是想一个提交到doReservation一个到doCancel........每次按第二个键都会直接去doReservation。。。小白求助<strong><h1>T...
就是想一个提交到doReservation一个到doCancel........每次按第二个键都会直接去doReservation。。。小白求助
<strong><h1>To make a reservation:</h1>
</strong>
<form action="doReservation" method="POST">
Enter the book Id
<input name="resID" type="text" id="resID" value="">
<span class="gray_text">
<input type=submit value=" reserve " />
</span>
<p>
<h1>To cancel a reservation:</h1>
<form action="doCancel" method="POST">
<p>Enter the reservation Id
<input name="cancelID" type="text" id="cancelID" value="">
<span class="gray_text">
<input type=submit value=" cancel " />
</span> </p> 展开
<strong><h1>To make a reservation:</h1>
</strong>
<form action="doReservation" method="POST">
Enter the book Id
<input name="resID" type="text" id="resID" value="">
<span class="gray_text">
<input type=submit value=" reserve " />
</span>
<p>
<h1>To cancel a reservation:</h1>
<form action="doCancel" method="POST">
<p>Enter the reservation Id
<input name="cancelID" type="text" id="cancelID" value="">
<span class="gray_text">
<input type=submit value=" cancel " />
</span> </p> 展开
1个回答
展开全部
两个表单都没有使用</form>关闭,只要将表单关闭就可以了,改后代码如下:
<strong><h1>To make a reservation:</h1>
</strong>
<form action="doReservation" method="POST">
Enter the book Id
<input name="resID" type="text" id="resID" value="">
<span class="gray_text">
<input type=submit value=" reserve " />
</span>
</form> <!-- 在这里关闭 -->
<p>
<h1>To cancel a reservation:</h1>
<form action="doCancel" method="POST">
<p>Enter the reservation Id
<input name="cancelID" type="text" id="cancelID" value="">
<span class="gray_text">
<input type=submit value=" cancel " />
</span> </p>
</form> <!-- 在这里关闭 -->
只要两个表单的action指向不同的处理页面,就可以实现各自提交到不同的地方,这个你已经做对了.所以,只要修正上面的小错误就OK了.
<strong><h1>To make a reservation:</h1>
</strong>
<form action="doReservation" method="POST">
Enter the book Id
<input name="resID" type="text" id="resID" value="">
<span class="gray_text">
<input type=submit value=" reserve " />
</span>
</form> <!-- 在这里关闭 -->
<p>
<h1>To cancel a reservation:</h1>
<form action="doCancel" method="POST">
<p>Enter the reservation Id
<input name="cancelID" type="text" id="cancelID" value="">
<span class="gray_text">
<input type=submit value=" cancel " />
</span> </p>
</form> <!-- 在这里关闭 -->
只要两个表单的action指向不同的处理页面,就可以实现各自提交到不同的地方,这个你已经做对了.所以,只要修正上面的小错误就OK了.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询