在我的代碼,我想遍歷所有陣列中的人物,併爲3個字符每個可能的組合,請執行以下代碼,然後重複直到達到所有可能的組合循環訪問數組中的字符,爲每個可能的3個字符組合運行代碼?
我沒有知道從哪裏開始,請幫助,如果你能
這是我的代碼,感謝
var link = 'http://www.roblox.com/UserCheck/DoesUsernameExist?username=';
var swap = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
//get all combinations of 3 objects in the swap array, for each do this:
$.get(link+(the combination of three objects here)).success(function(r) {
if (r['success'] == false) console.log(the combination of three objects here);
});
組合是否可能無序? ('cab','bac'等) – 2014-09-21 07:46:16
只要所有的組合都運行,它就不會重複組合 – Sam 2014-09-21 07:48:01
您是否具有正在調用的函數DoesUserNameExist()的實現通過網址? – mrsrizan 2014-09-21 07:52:31