wx-open-launch-weapp html代码示例
时间: 2023-09-03 22:08:50 浏览: 203
HTML5跳转小程序wx-open-launch-weapp的示例代码
4星 · 用户满意度95%
以下是一个简单的 HTML 代码示例,可以用于启动微信小程序:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>启动微信小程序</title>
</head>
<body>
<button onclick="launchWeapp()">启动微信小程序</button>
<script>
function launchWeapp() {
WeixinJSBridge.invoke('launchMiniProgram', {
'type': 'app',
'appId': '你的小程序AppID',
'path': 'pages/index/index'
}, function(res) {
console.log(res);
});
}
</script>
</body>
</html>
```
在实际使用时,需要将 `appId` 替换成你的小程序的 AppID,`path` 替换成你要启动的小程序页面路径。同时,还需要确保在微信客户端中打开该 HTML 页面才能正常启动微信小程序。
阅读全文