Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
            
                    
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        6年前关闭。
                    
                
        

我有两个文本框,来自数据库$ row的textbox1 echo值,并在数字分组上显示1,900,200.00。我的textbox2使用javascript自动复制textbox1的确切值。我想做的是替换textbox2中的逗号(,)。

最佳答案

使用.replace()

document.getElementById('txt2').value = document.getElementById('txt1').value.replace(/,/g, '');

10-08 05:08