<!-- 输入框 -->
<input id="input" type="text" value="请输入"/>
<!-- 样式 -->
<style>
#input
{
width: 100%;
height: 60px;
margin-top: 800px;
}
</style>
<!-- 显示在输入法上方 -->
<script>
document.getElementById('input').scrollIntoView(true);
</script>
网友评论