addUeditor("name值", "标题" [, "提示", "默认值", "额外css类"])
标识符:ueditor
| 参数 | 含义 | 类型 |
|---|---|---|
| name | name值 | string |
| title | 标题 | string |
| tips | 提示 | string |
| default | 默认值 | string |
| extra_class | 额外css类 | string |
添加一个百度编辑器也非常的简单
return ZBuilder::make("form")
->addUeditor("content", "内容")
->fetch();
