---
title: thymeleaf
date: 2018-10-07 14:44:02
update: 2018-10-07 14:44:02
categories: thymeleaf
tags: [thymeleaf]
---
### js动态添加select选项和取消select选项
test.html
```html
```
后台controller
```java
@RequestMapping("/test")
public ModelAndView test() {
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("test");
List cityContaiMall = mallMapper.findCityContaiMall();
modelAndView.addObject("cityContaiMall", cityContaiMall);
return modelAndView;
}
```
thymeleaf