login.html 369 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. ssssss
  9. <script>
  10. const currentUrl = window.location.href;
  11. const url = new URL(currentUrl);
  12. const params = new URLSearchParams(url.search);
  13. const memberId = params.get('member_id');
  14. console.log('memberId', memberId);
  15. </script>
  16. </body>
  17. </html>