我需要设置禁用的< select>元素,使其看起来像启用它们.有人可以帮忙吗?
PS.我完全知道对HCI原则等做这样的事情的缺点,但是它的要求,所以我必须做,如果可能的话…
谢谢.
编辑:
@AlexThomas’方法在HTML代码中禁用元素时效果很好,但不幸的是我正在使用JQuery进行禁用/启用:
Monday
Tuesday
$(".dayselector").attr("disabled",true);
$(".dayselector").attr("disabled",false);
所以选择器:
$(".dayselector") //works and gets all the selects
和
$(".dayselector option") //works and gets all the selects' option items
但
$(“.dayselector [disabled =’true’]”)//不返回任何东西.
和
`$(".dayselector [disabled='false']") //doesn't return anything.
有没有我失踪的东西?