gpt4 book ai didi

html - 是否可以使用 CSS 为禁用的 INPUT 元素设置样式?

转载 作者:技术小花猫 更新时间:2023-10-29 12:37:59 25 4
gpt4 key购买 nike

我需要设置样式 disabled <select>使它们看起来像是已启用的元素。有人可以帮忙吗?

附言。我非常清楚根据 HCI 原则等做这种事情的缺点,但这是一项要求,所以如果可能的话我必须这样做......

谢谢。

编辑:

@AlexThomas 的方法在 HTML 代码中禁用元素时效果很好,但不幸的是我正在使用 JQuery 进行禁用/启用:

<select class='dayselector'>
<option>Monday</option>
<option>Tuesday</option>
<!-- .... etc. -->
</select>

$(".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']") //doesn't return anything.

`$(".dayselector [disabled='false']")  //doesn't return anything.

有什么我想念的吗?

最佳答案

你可以选择

select[disabled] {  }

(

select:disabled {  }

(

关于html - 是否可以使用 CSS 为禁用的 INPUT 元素设置样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5043051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com