-
Notifications
You must be signed in to change notification settings - Fork 13
poplayer
eprom2006 edited this page Feb 9, 2020
·
2 revisions
poplayer({
header:headertext,
data:data,
template:template
});
template语法与render完全一样。
| 成员 | 类型 | 用途 |
|---|---|---|
| header | 标题 | |
| width | 宽度 | |
| height | 高度 | |
| data | 数据 | |
| template | 模板 | |
| render | function | 自定义渲染器 |
| onclose | function | 当浮层关闭时的回调函数 |
poplayer({
header:headertext,
render:function(p){
//my code here...
}
});
渲染函数传入参数结构
{
container:{popbodycontainer}
}