移动端关于点击输入框,因字体变化,导致布局变形的问题

来源:互联网 发布:iphone8知乎 编辑:程序博客网 时间:2024/05/22 10:27
 $(function(){
        var resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize';
        var _orig_font = document.documentElement.style.fontSize;
        $(window).on(resizeEvt,function(){
            document.documentElement.style.fontSize = _orig_font;
        });
    }); 
阅读全文
0 0
原创粉丝点击