美文网首页
input select 改变选中文本颜色

input select 改变选中文本颜色

作者: 米诺zuo | 来源:发表于2021-03-05 11:57 被阅读0次

    https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy

    input.select()
    input.focus()
    input.setSelecction(start, end)
    
    //set select backgroundColor
    input::selection  {
        background-color: #008ce6;
        color: #fff
    }
    
    

    相关文章

      网友评论

          本文标题:input select 改变选中文本颜色

          本文链接:https://www.haomeiwen.com/subject/xrgaiktx.html