- 注册时间
- 2018-11-6
- 最后登录
- 2023-12-10
- 阅读权限
- 10
- 积分
- 698
- 精华
- 0
- 帖子
- 85
|
<div name="countrys" class="mini-checkboxlist" repeatItems="3" repeatLayout="flow" url="../data/countrys.txt" value="cn,de,usa" textField="text" valueField="id" ></div>
这里是用URL获取的值,我如果有个js里的数据,
json = [
{ "id": "usa", "text": "美国" },
{ "id": "cn", "text": "中国" },
{ "id": "jp", "text": "日本" },
{ "id": "en", "text": "英国" },
{ "id": "de", "text": "德国" },
{ "id": "fr", "text": "法国" },
{ "id": "ca", "text": "加拿大" },
{ "id": "at", "text": "奥地利" },
{ "id": "ch", "text": "瑞士" }
]
是否可以直接获取该json的数据然后显示在单选框中呢?
|
|