1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <title>简谱</title>
- <!-- <script src="./snd-1.js"></script> -->
- <style>
- svg text[text-anchor="end"]+text[text-anchor="end"]{
- display: none;
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
- Please enable it to continue.</strong>
- </noscript>
- <script id="abcData" type="text/vnd.abc" style="display: none;">
- </script>
- <script>
- const abc = location.search.split('c=')[1]
- const abcData = document.getElementById('abcData');
- abcData.innerHTML = decodeURIComponent(abc)
- console.log("🚀 ~ abcData:", abcData)
- </script>
- <script src="./abcweb-1.js"></script>
- </body>
- </html>
|