(function(doc, win) { var docEl = doc.documentElement, resizeEvt = "orientationchange" in window ? "orientationchange" : "resize", recalc = function() { var clientWidth = docEl.clientWidth; if (!clientWidth) return; // 这里的750 取决于设计稿的宽度 if (clientWidth > 750) { var whdef = 100 / 1920; // 表示1920的设计图,使用100PX的默认值 var wH = window.innerHeight; // 当前窗口的高度 var wW = window.innerWidth; // 当前窗口的宽度 var rem = wW * whdef; // 以默认比例值乘以当前窗口宽度,得到该宽度下的相应FONT-SIZE值 $("html").css("font-size", rem.toFixed(0) + "px"); } else { docEl.style.fontSize = 100 * (clientWidth / 750) + "px"; } }; if (!doc.addEventListener) return; win.addEventListener(resizeEvt, recalc, false); doc.addEventListener("DOMContentLoaded", recalc, false); })(document, window);