新学知识
```**@PathVariable and @RequestParam**
@RequestParam:写法:
@GetMapping("/findModule")
@RequestParam(value = "page",defaultValue = "1")Integer page
细:有默认值
请求:localhost/findModule?page=xx
@PathVariable:写法:
@GetMapping("/findModule/{page}")
@PathVariable("page")int page
细:没有默认值
请求:localhost/findModule/xx
```
Js选择器
:nth-child(n) n代表全部,不接受自定义变量