顶部的tabbar如何去掉。我要全屏webview
wv = plus.webview.create("","custom-webview",{
plusrequire:"none",
'uni-app': 'none', //不加载uni-app渲染层框架,避免样式冲突
top:uni.getSystemInfoSync().statusBarHeight+44
})
wv.loadURL("https://www.baidu.com")
var currentWebview = this.$scope.$getAppWebview();plus.webview.currentWebview()
currentWebview.append(wv);
setTimeout(function() {
console.log(wv.getStyle())
}, 1000);