ok.html 841 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>测试</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  8. <script src="${s3('/jquery/1.11.0/jquery.min.js')}"></script>
  9. </head>
  10. <body>
  11. <button style="height: 70px; width: 150px" onclick="click();"> 测试 </button>
  12. </body>
  13. <script>
  14. (function ($) {
  15. })(jQuery);
  16. function click() {
  17. debugger;
  18. $.ajax({
  19. url: 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxa3991865de920847&redirect_uri=http://yuliang.ng.yvanui.com/userOpen/loginTest&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect',
  20. get: "get",
  21. success: function (data) {
  22. alert(data);
  23. console.log(data);
  24. },
  25. });
  26. }
  27. </script>