This question already has answers here:
How can I get query string values in JavaScript?
                                
                                    (73个答案)
                                
                        
                                6年前关闭。
            
                    
我有962=962&961=961&485=485这样的字符串

我想将值保存到数组中。

我可能在问一个愚蠢的问题,但我被困在这里。

谢谢

最佳答案

如果需要所有值,可以将正则表达式传递给split()

>>> "962=962&961=961&485=485".split(/[=&]/)
["962", "962", "961", "961", "485", "485"]

10-07 22:02