我正在尝试将可折叠面板功能添加到我的淘汰赛模板中。
基本上,我想将图像添加到标题 div,单击该图像会切换图像 url(以显示“加号”或“减号”图标)并切换以下 div 的可见性。
我的模板(我希望具有所需的绑定)如下:
{{each $data}}
<div id="wrapper" class="option-wrapper group show">
<div class="option-head group">
<img data-bind="click: showDescription attr: { href: url }>
<h3 data-bind="text: Name"></h3>
<select class="option-select" data-bind="options: Values, optionsText: 'value', optionsValue: 'key', value: Selected" />
</div>
<div class="option-description" data-bind="visible: showDescription html: Description"></div>
</div>
{{/each}}
我只是不确定如何处理视图模型。任何帮助将不胜感激。