></web-view>
APP调用方法传参到webview引用的H5
// 方法实现
handleDialog() {
const webviewContext = uni.createWebviewContext('webViewId');
if (webviewContext != null) {
console.log("[METHOD1] 成功创建WebView上下文对象");
console.log("[METHOD1] 开始执行JavaScript代码...");
// 在WebView中执行我们构造的JavaScript代码
webviewContext.evalJS('alert(999)');
}
}
H5端
访问地址: http://192.168.2.71:8080/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<iframe
src="https://www.baidu.com/"
id="888"
sandbox="allow-scripts allow-same-origin"
style="width: 100%; height: 500px"
frameborder="0"
</iframe>
</body>
</html>