在html中点击按钮的唯一访问者的唯一代码

时间:2017-04-06 03:14:46

标签: javascript html

我需要一种与此类似的方法

    <input type="button" id="btnSearch" value="Search" onclick="GetValue();" />
    <p id="message" >Get Referral Code/p>

    function GetValue()
    {
    var myarray= new Array("item1","item2","item3");
    var random = myarray[Math.floor(Math.random() * myarray.length)];
    document.getElementById("message").innerHTML=random;
    }

但我需要的是将我的1000个唯一代码列表中的唯一代码提供给唯一身份访问者。这段代码的问题是我每次刷新代码时都会循环

0 个答案:

没有答案