为什么输入的无线电元素会变灰?

时间:2015-08-18 21:56:19

标签: html radio-button radioelement

我有三个无线电输入元素:

;WITH AllDates AS (
    SELECT xDate FROM AllDates WHERE xDate > @MinDate AND xDate <= @MaxDate
)

它们都是灰色的(单选按钮本身以及文本)。为什么?我的表格上没有任何其他内容(灰色)。

我的.css文件对type =“radio”,id =“visitor”,id =“ucstudent”或id =“ucemployee”没有任何作用。

1 个答案:

答案 0 :(得分:1)

将name属性添加到输入:

<input type="radio" id="visitor" name="type" />Visitor
<input type="radio" id="ucstudent" name="type" />UC Student
<input type="radio" id="ucemployee" name="type" />UC Employee