如何获取URL地址并将其作为参数/变量传递给脚本?

时间:2014-09-19 11:27:50

标签: variables url

我试图通过windown.location.href获取url地址,并将其作为值传递给跟踪脚本。

我写的代码看起来像这样:

function (){ var currentLocation = window.location.href; (new Image).src = 'http://www.tester-iwan.com?/siteid='+ currentLocation +'&gc=12'; })();

然而它不起作用。

基本上我需要的是将整个URL地址作为变量并将其传递给“siteid”参数。

我将感谢您的帮助。

提前谢谢你,
米哈尔

1 个答案:

答案 0 :(得分:0)

我在代码中发现了一个错误并找到了解决方法。 捕获URL并将其传递给相关脚本的代码应如下所示:

var currentLocation = window.location.href;
(function(){
(new Image()).src='http://www.tester-iwan.com?/siteid='+ currentLocation +'&gc=12';
})();

谢谢