要美化 PHP 單選按鈕,您可以使用 CSS 和 HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>美化單選按鈕</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<form action="process_form.php" method="post">
<label class="custom-radio">
<input type="radio" name="gender" value="male">
<span class="radio-btn"></span>
男性
</label>
<label class="custom-radio">
<input type="radio" name="gender" value="female">
<span class="radio-btn"></span>
女性
</label>
<button type="submit">提交</button>
</form>
</body>
</html>
styles.css
的同一目錄中創建一個新的 CSS 文件,并添加以下樣式:/* 隱藏默認的單選按鈕 */
input[type="radio"] {
display: none;
}
/* 自定義單選按鈕樣式 */
.custom-radio {
position: relative;
padding-left: 35px;
cursor: pointer;
font-size: 22px;
user-select: none;
}
.radio-btn {
position: absolute;
top: 0;
left: 0;
height: 24px;
width: 24px;
background-color: #eee;
border-radius: 50%;
transition: background-color 0.2s;
}
/* 當鼠標懸停在單選按鈕上時改變背景色 */
.custom-radio:hover .radio-btn {
background-color: #ccc;
}
/* 當單選按鈕被選中時顯示藍色邊框和藍色圓點 */
input[type="radio"]:checked ~ .radio-btn {
background-color: #2196F3;
}
input[type="radio"]:checked ~ .radio-btn::after {
content: "";
position: absolute;
top: 7px;
left: 7px;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: white;
}
process_form.php
的同一目錄中創建一個 PHP 文件,用于處理表單數據:<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$gender = $_POST["gender"];
echo "您選擇了:$gender";
}
?>
現在,當您運行此代碼時,單選按鈕將具有美化的外觀。請注意,這只是一個簡單的示例,您可以根據需要進一步自定義樣式。