0

我找到了一个关于如何使用 Javascript 创建 GUID 的示例,但是如何获取当前页面 URL 并使用 jQuery 或 Javascript 将 GUID 附加到它。

  function S4() {
        return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
    }

    // then to call it, plus stitch in '4' in the third group
    guid = (S4() + S4() + "-" + S4() + "-4" + S4().substr(0, 3) + "-" + S4() + "-" + S4() + S4() + S4()).toLowerCase();
    //alert(guid);

我尝试了 window.location = window.location + '?guid=' + guid,但这只是一遍又一遍地重定向页面,同时将 guid 附加到 URL 的末尾。

我只需要在页面加载时将 GUID 附加到 URL 的末尾。我该怎么做?

提前致谢

4

1 回答 1

1

使用正则表达式检查该位置是否已有 guid,如果不存在则重新加载页面。

var lc = window.location;
if(!(/\?guid=/.test(lc))) {
    window.location = window.location + '?guid=' + guid
}
于 2013-04-05T15:39:10.383 回答