- 注册时间
- 2014-7-21
- 最后登录
- 2022-7-26
- 阅读权限
- 150
- 积分
- 18264
- 精华
- 0
- 帖子
- 8338
|
本帖最后由 dforce 于 2017-8-3 12:28 编辑
你这里复制到的只是一段长得像combobox的html,并不是MiniUI控件,你这里更好的方案是动态生成。
function test() {
var combo = new mini.ComboBox();
combo.set({
style:"width:150px",
textField:"text",
valueField:"id",
url:"../data/countrys.txt",
ondrawcellnDrawCell
})
combo.render(document.body);
} |
|