我想从输入时间中删除蓝色backgroundcolor。 有可能吗?
顶部链接中的图片。 谢谢
<input type="time" readonly/>
<script>
$('input[type=time]').dblclick(function(){
$(this).prop('readonly', false) // and add color NOW
})
</script>
答案 0 :(得分:0)
如果您指的是发光边框,则可以通过将该选择器添加到CSS样式中来实现:
input[type=time]:focus {
outline: none;
}