單選按鈕用于從多個(gè)選項(xiàng)中進(jìn)行單選。組中的所有單選按鈕都具有相同的name屬性。
每個(gè)組只能選擇一個(gè)按鈕。與復(fù)選框一樣,使用value屬性來存儲(chǔ)發(fā)送到服務(wù)器的值(如果)按鈕。
value屬性對于復(fù)選框和單選按鈕是必需的,并且對于其他字段類型是可選的。
<label for="radioButtonField1">A radio button field</label> <input type="radio" name="radioButtonField" id="radioButtonField1" value="radio1" /> <label for="radioButtonField2">Another radio button</label> <input type="radio" name="radioButtonField" id="radioButtonField2" value="radio2" />
您可以使用與預(yù)選復(fù)選框相同的方法預(yù)先選擇單選按鈕。
以下腳本用于index.htm。它有一組單選按鈕。
<html> <body> <form action="index.php" method="post"> <b>Please select your favorite color wine:</b> <br> <input type="radio" name="color" value="white"> White <input type="radio" name="color" value="rose"> Rose <input type="radio" name="color" value="red"> Red <br> <input type="submit" value="Submit This Form"> </form> </body> </html>
以下腳本用于index.php。 它從上面的表單中讀取數(shù)據(jù)。
<?php
$color = $_POST["color"];
if( ( $color != null ) )
{
$msg .= "a nice $color ";
echo( $msg );
}
?>
更多建議: