跳转H5页面WebView之后 如何返回

if (this.item.awardDistributingType == GoodTypeU.jumpUrl) {//跳转Url
this.h5Game.active = true;
let webView = this.h5Game.getComponent(cc.WebView)
webView.url = this.item.awardDistributingParameter;
webView.setJavascriptInterfaceScheme(this.item.awardDistributingParameter);
webView.setOnJSCallback((sender, url) => {
this.h5Game.active = false;
})
}

https://blog.csdn.net/qq_28299311/article/details/103162026