## 1.GET异步请求
触发事件class类为`.ajax-get`,可设置触发前提示信息!
```html
<a class="ajax-get" data-msg='提示信息' href="地址">GET</a>
```
## 2.提交表单
触发事件class类为`.ajax-submit`,必须使用\<form>包裹
```html
<form action="地址">
<button class="ajax-submit">提交</buttom>
</form>
```
## 3.iframe弹出层
触发事件class类为`.open-popup`,必须设置url地址
```html
<button class="open-popup" data-title="标题" data-url="url地址" data-size="宽,高">弹出</button>
```
data-size参数:max最大化、auto自动适应屏幕、(宽,高)自定义大小
## 4.列表多选操作
触发事件class类为`.open-popup-param`,必须设置url地址,触发后将选择的列表ID组作为参数传递
```html
<button class="open-popup-param" data-title="标题" data-url="url地址" data-size="宽,高">
按钮</button>
```