thank you very much!
On 2009-3-6, at 上午10:48, Mike Alsup wrote:
What do you recommend to generate UUID with jQuery ? Thank you !I've been using something like this: function uid() { var result=''; for(var i=0; i<32; i++) result += Math.floor(Math.random()*16).toString(16).toUpperCase (); return result }