我有一個包含多行的HTML表格。在每一行中,第一列有一個問題(文本),第三,三個單選按鈕分別在第2,3,4列中回答是,否或N/A。當在同一行上選擇單選按鈕時,更改表格單元格中的字體顏色
我希望能夠改變文本的字體顏色在第一列進行檢查或者在同一行中單選按鈕的時候。
其他在這裏#1問題是指改變,其中單選按鈕所在的單元格的背景顏色,但在這種情況下,我需要修改第一列的屬性在同一行來代替。
PS:你可以找到啞代碼與this JSBin fiddle玩:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<table border=1>
<tr>
<th>Question</th>
<th>Yes</th>
<th>No</th>
<th>N/A</th>
</tr>
<tr>
<td>Are you a student?</td>
<td><input type="radio" name="student"></td>
<td><input type="radio" name="student"></td>
<td><input type="radio" name="student"></td>
</tr>
</table>
</body>
</html>
任何提示或建議會更受歡迎。提前致謝!
你有jQuery的文檔中加載? – Mojtaba
@Mojtaba - 是的,我喜歡。不過,我忘了將它添加到JSBin小提琴中。 – gacanepa