删除背景效果输入时间

时间:2019-03-02 00:03:07

标签: jquery html css

input time focused

我想从输入时间中删除蓝色backgroundcolor。 有可能吗?

顶部链接中的图片。 谢谢

 <input type="time" readonly/>

 <script>
 $('input[type=time]').dblclick(function(){
  $(this).prop('readonly', false) // and add color NOW
 })
 </script>

1 个答案:

答案 0 :(得分:0)

如果您指的是发光边框,则可以通过将该选择器添加到CSS样式中来实现:

input[type=time]:focus {
   outline: none;
}