是否有可能禁用表单字段使用CSS?我当然知道禁用属性,但是否有可能在CSS规则中指定这一点?比如——

<input type="text" name="username" value="admin" >
<style type="text/css">
  input[name=username] {
    disabled: true; /* Does not work */
  }
</style>

我问的原因是,我有一个应用程序,其中表单字段是自动生成的,字段隐藏/显示基于一些规则(在Javascript中运行)。现在我想扩展它以支持禁用/启用字段,但规则的编写方式是直接操作表单字段的样式属性。因此,现在我必须扩展规则引擎来更改属性以及表单字段的样式,但不知何故,这似乎不太理想。

奇怪的是,CSS中有可见和显示属性,但没有启用/禁用。在尚未开发的HTML5标准或非标准(特定于浏览器)中是否存在类似内容?


当前回答

指针事件的变体:none;解决方案,解决输入仍然可以通过它的标签控件或tabindex访问的问题,是将输入包装在div中,这是一个样式为禁用文本输入,并设置输入{可见性:隐藏;}当输入被“禁用”时。 裁判:https://developer.mozilla.org/en-US/docs/Web/CSS/visibility的值

div.dependant { border: 0.1px solid rgb(170, 170, 170); background-color: rgb(235,235,228); box-sizing: border-box; } input[type="checkbox"]:not(:checked) ~ div.dependant:first-of-type { display: inline-block; } input[type="checkbox"]:checked ~ div.dependant:first-of-type { display: contents; } input[type="checkbox"]:not(:checked) ~ div.dependant:first-of-type > input { visibility: hidden; } <form> <label for="chk1">Enable textbox?</label> <input id="chk1" type="checkbox" /> <br /> <label for="text1">Input textbox label</label> <div class="dependant"> <input id="text1" type="text" /> </div> </form>

上面片段中应用的禁用样式来自Chrome UI,可能在视觉上与其他浏览器上禁用的输入不相同。可能它可以使用特定于引擎的CSS扩展-prefixes为各个浏览器定制。虽然乍一看,我不认为它可以: 微软CSS扩展,Mozilla CSS扩展,WebKit CSS扩展

引入额外的值visibility: disabled或display: disabled或甚至appearance: disabled似乎更明智,因为visibility: hidden已经影响了可应用元素和相关控制元素的行为。

其他回答

指针事件的变体:none;解决方案,解决输入仍然可以通过它的标签控件或tabindex访问的问题,是将输入包装在div中,这是一个样式为禁用文本输入,并设置输入{可见性:隐藏;}当输入被“禁用”时。 裁判:https://developer.mozilla.org/en-US/docs/Web/CSS/visibility的值

div.dependant { border: 0.1px solid rgb(170, 170, 170); background-color: rgb(235,235,228); box-sizing: border-box; } input[type="checkbox"]:not(:checked) ~ div.dependant:first-of-type { display: inline-block; } input[type="checkbox"]:checked ~ div.dependant:first-of-type { display: contents; } input[type="checkbox"]:not(:checked) ~ div.dependant:first-of-type > input { visibility: hidden; } <form> <label for="chk1">Enable textbox?</label> <input id="chk1" type="checkbox" /> <br /> <label for="text1">Input textbox label</label> <div class="dependant"> <input id="text1" type="text" /> </div> </form>

上面片段中应用的禁用样式来自Chrome UI,可能在视觉上与其他浏览器上禁用的输入不相同。可能它可以使用特定于引擎的CSS扩展-prefixes为各个浏览器定制。虽然乍一看,我不认为它可以: 微软CSS扩展,Mozilla CSS扩展,WebKit CSS扩展

引入额外的值visibility: disabled或display: disabled或甚至appearance: disabled似乎更明智,因为visibility: hidden已经影响了可应用元素和相关控制元素的行为。

恐怕你不能这样做,但如果你不想在字段中添加属性,你可以在jQuery中执行以下操作。只要把它放在<head></head>标签内

$(document).ready(function(){ 
  $(".inputClass").focus(function(){
    $(this).blur();
  }); 
});

如果你在DOM中生成字段(用JS),你应该这样做:

$(document).ready(function(){ 
  $(document).on("focus", ".inputClass", function(){
    $(this).blur();
  }); 
});

实际的解决方案是使用CSS来隐藏输入。

为了得出自然的结论,您可以为每个实际输入编写两个html输入(一个启用,一个禁用),然后使用javascript控制CSS来显示和隐藏它们。

没有办法使用CSS来实现这个目的。 我的建议是包括一个javascript代码,你分配或改变css类应用到输入。 就像这样:

function change_input() { $('#id_input1') .toggleClass('class_disabled') .toggleClass('class_enabled'); $('.class_disabled').attr('disabled', ''); $('.class_enabled').removeAttr('disabled', ''); } .class_disabled { background-color : #FF0000; } .class_enabled { background-color : #00FF00; } <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <form> Input: <input id="id_input1" class="class_enabled" /> <input type="button" value="Toggle" onclick="change_input()";/> </form>

我一直在用:

input.disabled {
  pointer-events:none;
  color:#AAA;
  background:#F5F5F5;
}

然后将CSS类应用到输入字段:

<input class="disabled" type="text" value="90" name="myinput" id="myinput" />