如何在 astro JS 中使用 document 和 window 元素?
How to use document and window element in astro JS?
我想使用 window 或文档到 return 当前页面默认路径 Astro.site.pathname 无法正常工作或没有适当的文档。
我的问题是如何在 Astro JS 中正确使用 document 或 window?
提前致谢!
如果要使用 window
或 document
之类的内容,则需要在 <script is:inline></script>
中编写脚本。这样 Astro 就不会触及您的 JS 并直接将其包含在 HTML 中。 --- ---
之间位于页面顶部的 JS 将在构建时执行。
我想使用 window 或文档到 return 当前页面默认路径 Astro.site.pathname 无法正常工作或没有适当的文档。
我的问题是如何在 Astro JS 中正确使用 document 或 window?
提前致谢!
如果要使用 window
或 document
之类的内容,则需要在 <script is:inline></script>
中编写脚本。这样 Astro 就不会触及您的 JS 并直接将其包含在 HTML 中。 --- ---
之间位于页面顶部的 JS 将在构建时执行。