Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/vb.net/17.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google chrome 禁用下拉列表的背景为蓝色_Google Chrome - Fatal编程技术网

Google chrome 禁用下拉列表的背景为蓝色

Google chrome 禁用下拉列表的背景为蓝色,google-chrome,Google Chrome,我在chrome 16.0.912浏览器中遇到一个问题。我的禁用下拉列表有蓝色背景。如何删除蓝色背景?是否有jquery或css属性 这是Chrome中的一个bug,请参见以下URL: 这是因为您将背景图像设置为“某物”,或将背景颜色设置为“透明”。通过css动态“修复”此问题的两种方法是: select:disabled { background-image: none; } 或 我真的不认为jQuery有办法解决这个问题。谢谢Andreson,那天我已经通过背景图片设置了这个问题

我在chrome 16.0.912浏览器中遇到一个问题。我的禁用下拉列表有蓝色背景。如何删除蓝色背景?是否有jquery或css属性

这是Chrome中的一个bug,请参见以下URL:

这是因为您将背景图像设置为“某物”,或将背景颜色设置为“透明”。通过css动态“修复”此问题的两种方法是:

select:disabled
{
    background-image: none;
}


我真的不认为jQuery有办法解决这个问题。

谢谢Andreson,那天我已经通过背景图片设置了这个问题。那个项目已经完成了。我们只能用一种方法来解决这个问题,在后台方法中使用。就像插件使用方法一样。最好的例子是统一。
select:disabled
{
    background-color: white;
}