可以使用更多的提交按鈕來創建表單嗎? 我的意思是我有一個包含一些輸入字段,桌子和 3個按鈕的形式,將不同格式的HTML - 表單最佳實踐
<form id="form1" name="form1" method="post" >
<label for="country"><strong>Countries: </strong></label><br />
<select id="country" name="country">
<?php
//some php code here
?>
</select>
<br />
<br/>
<label for="start_date"><strong>Start date: </strong></label><br />
<input name="start_date" type="text" id="start_date" value="<?php if(!empty($start))echo $start; ?>" size="20" />
<br />
<br />
<label for="stop_date"><strong>Stop date: </strong></label><br />
<input name="stop_date" type="text" id="stop_date" value="<?php if(!empty($stop)) echo $stop; ?>" size="20" />
<br />
<br />
<input type="submit" name="fill_table" value="Retrieve data" />
<div id="table">
<h1> </h1>
<hr />
<h2>Sales Report</h2>
<table class="display" id="data_table" >
<thead>
<tr>
<th>Product</th>
<th>Date</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<?php
//some php code here
?>
</tbody>
</table>
<br />
<br />
<br />
<input type="submit" class="button" name="export_xls" value="Export xls" />
<input style="margin-left:10px;" type="submit" name="export_html" value="Export html" />
</form>
出口的一些信息是否確定這樣做,或者我應該做3種形式各一有一個特定的提交按鈕?每次按下提交按鈕,我都對輸入字段感興趣:start_date,stop_date和來自「country」的選定項目。 P.S.我想知道它是否最優以及其他程序員如何處理這些東西
它的工作,即使我不使用相同的「名稱」屬性,但我認爲這種方式更合適 – NiCU 2012-07-20 07:49:30
可以這樣做,但我認爲「格式」的選擇是一個更好的主意。 – NoZip 2012-07-20 09:03:50