demo.html
905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>微信登录</title>
<link href="../images/wei-icon.ico" rel="Shortcut Icon">
<style>
#login_container{
margin: 0 auto;
margin-top: 100px;
width: 500px;
text-align: center;
}
</style>
</head>
<body style="background: #1D1D1D">
<div id="login_container">
</div>
<script src="http://res.wx.qq.com/connect/zh_CN/htmledition/js/wxLogin.js"></script>
<script src="../lib/jquery-3.1.1.min.js"></script>
<script type="text/javascript">
//id和scope不用改、appid和redirect_uri改为自己的
var obj = new WxLogin({
id:"login_container",
appid: "wx4950f49317cb9614",
scope: "snsapi_login",
redirect_uri:"http://yabolive.com",
state: "",
style: "white",
href: ""
});
</script>
</body>
</html>