gpt4 book ai didi

javascript - 我可以使用 location.href 生成变量的 url 吗?

转载 作者:行者123 更新时间:2023-11-28 00:26:22 30 4
gpt4 key购买 nike

我正在向我的网站添加 disqus,我想知道是否有一种方法可以使用页面的 url 来填充 disqus_url 的变量

我知道 window.location.href 会找到 url,我只是不知道如何在函数内部使用它。

这是我尝试过的:

<script type="text/javascript">
(function() {
var disqus_url = window.location.href;
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>

最佳答案

是的,可以。但是,window.location.href 是默认值,因此您实际上不需要提供它。

请注意,这很可能会将 http://example.com/helloworld.htmlhttp://example.com/helloworld.html?123 视为两个不同的线程。

参见https://help.disqus.com/customer/portal/articles/472098-javascript-configuration-variables#disqus_url

关于javascript - 我可以使用 location.href 生成变量的 url 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29454412/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com