1.准备,使用uniapp或者是H5
文档:https://www.html5plus.org/doc/zh_cn/webview.html
1.大致:创建一个webview ,加载本地js,打开一个网络页面
创建webview
onReady: function() {
wv = plus.webview.create("https://******", "custom-webview", {//1 创建一个webview
hardwareAccelerated: true,
scrollIndicator: "none",
scalable: true
});
wv.appendJsFile("/hybrid/html/js/util.js");// 2.加载本地js
var currentWebview = this.$scope.$getAppWebview();
currentWebview.append(wv); // 如果不想把远程页面显示在主窗口可以不这么做
}
uitl.js
一定要在这个事件里面做你想做的事情(例如下面,让div不显示,其实就是隐藏一个页面的广告)
document.addEventListener("plusready", function() {
var commonrightd = document.getElementsByClassName("common-right-d");
if (commonrightd != null && commonrightd != null && commonrightd[0] != null && commonrightd != undefined) {
commonrightd.display = "none";
}
});