| 12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <body>
- ssssss
- <script>
- const currentUrl = window.location.href;
- const url = new URL(currentUrl);
- const params = new URLSearchParams(url.search);
- const memberId = params.get('member_id');
- console.log('memberId', memberId);
- </script>
- </body>
- </html>
|