var result = Math.random().toString(36).substring(2,6); console.log(result);//包含0-9a-z
原理解析:
Math.random()
toString(36)
substring(2,6)