index.html 824 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <title>简谱</title>
  8. <!-- <script src="./snd-1.js"></script> -->
  9. </head>
  10. <body>
  11. <noscript>
  12. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  13. Please enable it to continue.</strong>
  14. </noscript>
  15. <script id="abcData" type="text/vnd.abc" style="display: none;">
  16. </script>
  17. <script>
  18. const abc = location.search.split('c=')[1]
  19. const abcData = document.getElementById('abcData');
  20. abcData.innerHTML = decodeURIComponent(abc)
  21. console.log("🚀 ~ abcData:", abcData)
  22. </script>
  23. <script src="./abcweb-1.js"></script>
  24. </body>
  25. </html>