在JavaScript中,获取空格的方法有很多,以下是一些常见的方法:
1. 使用字符串的 `split` 方法
```javascript
let str = "这是一个空格分隔的字符串";
let spaces = str.split(' ');
console.log(spaces); // ["这是一个", "空格", "分隔的", "字符串"]
```
2. 使用正则表达式
```javascript
let str = "这是一个空格分隔的字符串";
let spaces = str.match(/s+/g);
console.log(spaces); // [" ", " ", " "]
```
3. 使用字符串的 `indexOf` 方法
```javascript
let str = "这是一个空格分隔的字符串";
let index = 0;
let spaces = [];
while ((index = str.indexOf(' ', index)) !== -1) {
spaces.push(index);
index += 1;