我可以使用 location.href 为变量生成 url 吗?

Can I use location.href to generate the url for a variable?

我正在向我的网站添加 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