在show_code函数中为什么要将函数shuffle()赋值给变量code呢,还有那个for循环是怎么回事,函数shuffle中的随机数为什么还要减去0.5呢/*生成验证码*/ (function create_code(){ function shuffle(){ var arr=['1','r','Q','4','S','6','w','u','D','I','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p', 'q','2','s','t','8','v','7','x','y','z','A','B','C','9','E','F','G','H','0','J','K','L','M','N','O','P','3','R', '5','T','U','V','W','X','Y','Z']; return arr.sort(function(){ return (Math.random()-.5); }); }; shuffle(); function show_code(){ var ar1=''; var code=shuffle(); for(var i=0;i<6;i++){ ar1+=code[i]; }; $(".reg-box .phoKey").text(ar1); }; show_code(); $(".reg-box .phoKey").click(function(){ show_code(); }); })();
添加回答
举报
0/150
提交
取消