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
| <!DOCTYPE HTML>
| <html>
| <head>
| <meta charset="utf-8">
| [#include "/business/wechat/include/title.html" /]
| [#include "/business/wechat/include/wheader.html" /]
| </head>
|
| <body>
| 正在跳转中... <br>
|
| <a id="test">test</a>
| <script type="text/javascript">
| $(function() {
| $("#test").trigger("click");
| })
|
|
| $("#test").click(function() {
| var ime = app.getIme();
| window.location.href="${base}/wechat/clientWywType.html?ime="+ime;
| //alert(imei);
| });
| </script>
| </body>
| </html>
|
|