如何检查HTML中的屏幕分辨率

时间:2015-03-23 07:00:07

标签: html textbox screen resolution

如何在我的网站打开时检查屏幕的屏幕分辨率,以适应它的文本框尺寸?

1 个答案:

答案 0 :(得分:1)

测量宽度:screen.width 测量高度:screen.height

<script>
    var screenWidth = screen.width;
    var screenHeight = screen.height;

    console.log(screenWidth);
    console.log(screenHeight);
</script>

如果您正在开发响应式应用程序尝试bootstrap。如果使用bootstrap,它将为您提供不同的类,以使字段适合屏幕大小。 参考:

http://getbootstrap.com/css/#grid