Knockoutjs 使用选项组进行选择
Knockoutjs 绑定中有什么方法可以指定 optionsGroup 吗?类似以下内容
<select data-bind="options: collection, optionsText: 'Text', optionsGroup: 'Group'/>
请回复。
Is there any way in Knockoutjs binding where I can specify optionsGroup ? something like follwoing
<select data-bind="options: collection, optionsText: 'Text', optionsGroup: 'Group'/>
Please do reply.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我得到了同样的答案,如果有人想要的话,这就是答案,
I got the answer of the same, here is the answer if anybody wants,
在许多情况下,您不需要观察选项本身,只需观察选择的结果即可。
这是进行英国县选择的示例。
HTML:
JS:
您将在 viewModel.countyList 中检索所选选项。
In many cases, you don't need the options themselves to be observable, just the result of the selection.
Here is the example which does UK county selection.
HTML:
JS :
You will retrieve the selected option in viewModel.countyList.
这也将允许占位符:
JS 将采用以下格式:
此选项值,可以是这个简单实例中的值。
但对于更复杂的对象 $data 将是更好的选择。
This will also allow a placeholder:
JS would be in this format:
This option value, could be value in this simple instance.
But for more complex object $data would be the better option.
试试这个。
jsfiddle
来源
Try this.
jsfiddle
source