Closed. This question needs to be more focused。它当前不接受答案。
                            
                        
                    
                
            
                    
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
                        
                        3年前关闭。
                    
                
        

我如何制作带有js的按钮,当我单击它时显示随机字母。

最佳答案

Math.random方法与String.fromCharCode方法一起使用。



console.log(
  String.fromCharCode(
    Math.floor(Math.random() * 26) + 97
  )
)

关于javascript - 单击js中的按钮时如何生成随机字母,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40586761/

10-11 05:09