1 window.onresize=function(){ 2 var html=document.getElementsByTagName("html")[0]; 3 var width=window.innerWidth; // 获取窗口的文档显示区的宽度 4 var font_Size=16/1920*width; // 设计稿以1920为准,在1920的设计稿中:16px = 1rem 5 html.style.fontSize=font_Size+"px"; 6 };