当前位置: 代码迷 >> Java Web开发 >> 怎么设置input 的背景颜色
  详细解决方案

怎么设置input 的背景颜色

热度:56   发布时间:2016-04-17 12:19:30.0
如何设置input 的背景颜色?
这样试了不对:background-color:red 如何设置input 的背景颜色?其中type为text

------解决方案--------------------
HTML code
<style>input.text{background-color:red}</style><input type="text" class="text"><input type="text" style="background-color:blue">
------解决方案--------------------
学习....

------解决方案--------------------
楼主的环境问题吧!
------解决方案--------------------
HTML code
<style>   input.text{background-color:red}   </style>    <script>     function   mm()     {         var   a   =   document.getElementsByTagName("INPUT");         for(var   i=0;   i<a.length;   i++)   if(a[i].type=="text")  a[i].className="text";    }   </script>       <body onload="mm()">    <input/><input/></body>
  相关解决方案