Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
IE8 では薄い灰色で表示され、ほとんど判読できません。Chrome と Firefox は問題ありません。どうすれば解決できますか?
使用できますjQuery:
jQuery
$('input[type=text]:disabled').css({ 'color' : 'red' });
またはCSS:
CSS
input[type=text]:disabled { color:red }
私は強くお勧めしCSSます:D