我有三个无线电输入元素:
;WITH AllDates AS (
SELECT xDate FROM AllDates WHERE xDate > @MinDate AND xDate <= @MaxDate
)
它们都是灰色的(单选按钮本身以及文本)。为什么?我的表格上没有任何其他内容(灰色)。
我的.css文件对type =“radio”,id =“visitor”,id =“ucstudent”或id =“ucemployee”没有任何作用。
答案 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