摘要: /*!Math.uuid.js (v1.4)http://www.broofa.commailto:robert@broofa.comCopyright (c) 2010 Robert KiefferDual licensed under the MIT and GPL licenses.*//* * Generate a random uuid. * * USAGE: Math.uuid(length, radix) * length - the desired number of characters * radix - the number of allowable value... 阅读全文
posted @ 2011-10-06 01:10 greengnn 阅读(21033) 评论(0) 推荐(0) 编辑
摘要: function guidGenerator() { var S4 = function() { return (((1+Math.random())*0x10000)|0).toString(16).substring(1); }; return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());} 阅读全文
posted @ 2011-10-06 01:04 greengnn 阅读(4573) 评论(0) 推荐(1) 编辑