📜  java 脚本查找设备的屏幕大小 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:24.347000             🧑  作者: Mango

代码示例1
// Size of browser viewport.
$(window).height();
$(window).width();

// Size of HTML document (same as pageHeight/pageWidth in screenshot).
$(document).height();
$(document).width();