http://10.222.56.132:8080/sinaauto_page_war_exploded/web/serial/9/#carConfigure 如何获取地址上的 9 字符串 javascript
时间: 2023-07-19 10:58:38 浏览: 135
demo_war_exploded.war
您可以使用 `window.location.pathname` 和正则表达式来获取 URL 中的 9 字符串,具体代码如下所示:
```javascript
var path = window.location.pathname;
var match = path.match(/^\/serial\/(\d+)\//);
if (match) {
var serial_number = match[1];
console.log(serial_number); // 输出:9
} else {
console.log('没有匹配到数字');
}
```
这里使用了正则表达式 `/^\/serial\/(\d+)\//`,其中 `^\/serial\/` 表示匹配以 `/serial/` 开头的字符串,`\d+` 表示匹配一个或多个数字,括号内的 `\d+` 表示将匹配到的数字作为一个捕获组,通过 `match[1]` 获取到捕获组中的内容,即 9。
阅读全文