uniapp改变webview跳转页面高度

用uniapp开发时经常会遇见使用webview跳转第三方页面的情况,但有时页面内容会被遮挡,可以向webview内注入js来控制

    onReady() {
                // #ifdef APP-PLUS
                 var currentWebview = this.$scope.$getAppWebview()
                
                    let wv = currentWebview.children()[0];  
                    wv.evalJS("document.getElementById('J_loginIframe').style.height = '500px'");  
        
                // #endif
            },

你可能感兴趣的:(uniapp改变webview跳转页面高度)