循环功能而不更改页面

时间:2016-03-25 20:55:54

标签: javascript jquery

function makeid(count)
{
    var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    var text = "";
    for(var x=0; x<count; x++ ) {
      text += possible.charAt(Math.floor(Math.random() * possible.length));
    }
    return text;
}
window.location = "http://robloxdatabase.x10host.com/test.php?bob="+makeid(1128) 

现在它执行一次,然后更改页面。如何在不改变页面的情况下实现这一目标并让它继续下去?我听说可以用jquery完成,但我没有成功。对所有使&#34; http://robloxdatabase.x10host.com/test.php?bob=&#34; + makeid(1128)重复的方法开放。

0 个答案:

没有答案