我在网站上添加了disqus,我想知道是否有办法使用该网页的网址填写disqus_url
的变量
我知道window.location.href
会找到网址,我只是不知道如何在函数内部使用它。
这是我尝试过的:
<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>
答案 0 :(得分:1)
是的,你可以。但是,window.location.href
是默认值,因此您实际上不需要提供它。
请注意,这很可能会将http://example.com/helloworld.html
和http://example.com/helloworld.html?123
视为两个不同的主题。