请先阅读这篇文章:Web 中文字体应用指南
步骤一:在head中添加如下js,判断操作系统,并为html根节点添加相应操作系统class,注意需要引用jquery。
window.navigator.userAgent.indexOf('Windows') >= 0 ? jQuery(document.documentElement).addClass('Windows') : window.navigator.userAgent.indexOf('Macintosh') >= 0 ? jQuery(document.documentElement).addClass('Macintosh') : false ;