📌  相关文章
📜  设备宽度 js - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:39.509000             🧑  作者: Mango

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

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