美文网首页
输入法遮挡(scrollIntoView)

输入法遮挡(scrollIntoView)

作者: 智多牛 | 来源:发表于2016-12-20 12:00 被阅读0次
    <!-- 输入框 -->
    <input id="input" type="text" value="请输入"/>
    
    <!-- 样式 -->
    <style>
        
        #input
        {
            width: 100%;
            height: 60px;
            margin-top: 800px;
        }
        
    </style>
    
    <!-- 显示在输入法上方 -->
    <script>
        document.getElementById('input').scrollIntoView(true);
    </script>

相关文章

网友评论

      本文标题:输入法遮挡(scrollIntoView)

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