如果我试试
"my, tags are, in here".split(" ,")
Run Code Online (Sandbox Code Playgroud)
我得到以下内容
[ 'my, tags are, in here' ]
Run Code Online (Sandbox Code Playgroud)
而我想要的
['my', 'tags', 'are', 'in', 'here']
Run Code Online (Sandbox Code Playgroud) javascript ×1