-
Notifications
You must be signed in to change notification settings - Fork 13
模板 : element
eprom2006 edited this page Feb 9, 2020
·
2 revisions
模板可以是一个javascript对象。
template:{
e:"div",
t:"hello world!"
}对象可以有以下成员:
| 成员 | 类型 | 说明 |
|---|---|---|
| e | string | 元素名 |
| t | string object array function |
子模板 |
| id | ||
| class | ||
| name | string | html name属性 |
| style | object | 样式表 |
| width | ||
| height | ||
| title | string | 生成标题标签,当e=fieldset时,生成legend,当e=field/f1/f2/f3时在元素内生成label标签,e为其他值是无效 |
| a | object | html属性 |
| click | function | 点击事件处理函数 |
| event | object | 事件处理函数定义 |
| data | object | 数据 |
| datapath | string | 数据路径 |
| options | stringarrayobject | 选项值 |
| value | 输入项设置值 | |
| selected | string | 给select下拉选择框设置选中值,建议用value替代。 |
| bind | 双向绑定数据 |