index.html 929 B

1234567891011121314151617181920212223242526272829303132333435
  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. <style>
  10. svg text[text-anchor="end"]+text[text-anchor="end"]{
  11. display: none;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <noscript>
  17. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  18. Please enable it to continue.</strong>
  19. </noscript>
  20. <script id="abcData" type="text/vnd.abc" style="display: none;">
  21. </script>
  22. <script>
  23. const abc = location.search.split('c=')[1]
  24. const abcData = document.getElementById('abcData');
  25. abcData.innerHTML = decodeURIComponent(abc)
  26. console.log("🚀 ~ abcData:", abcData)
  27. </script>
  28. <script src="./abcweb-1.js"></script>
  29. </body>
  30. </html>