使用主机名获取脚本以获取URL

时间:2014-10-17 22:38:12

标签: javascript

我正在试图弄清楚如何使这个脚本工作,这令人沮丧。我试图通过抓取URL而不是手动输入域来改进脚本。

以下是原文:

<script type='text/javascript'>
      makeSlider({
          url: "http://yourdomain.com/" // Add your blog URL
      });
</script>

这是我尝试过的(和其他类似的东西):

<script type='text/javascript'>
      makeSlider({
          url: "http//" + window.location.hostname + /
      });
</script>

我甚至尝试过使用变量:

<script type='text/javascript'>
      var getDomain = "http//" + window.location.hostname + /,
      makeSlider({
            url: getDomain
      });
</script>

我的尝试都没有奏效。

1 个答案:

答案 0 :(得分:1)

尝试

var getDomain = "http://" + window.location.hostname + "/";