我是淘汰赛的新手,到目前为止,我遇到了一个困扰我的问题。我花了一整天的时间在这方面进展甚微。
我有 4 个单选按钮绑定到一个名为 InvType 的可观察对象:
<input type="radio" id="rdoAIP" name="rdoAIP" value="AIP" data-bind="checked: InvType" />AIP
<input type="radio" id="rdoPSI" name="rdoPSI" value="PSI" data-bind="checked: InvType" />PSI
<input type="radio" id="rdoPSIAIP" name="rdoPSIAIP" value="PSIAIP" data-bind="checked: InvType" />PSI/AIP
<input type="radio" id="rdoShortForm" name="rdoShortForm" value="PSIShortForm" data-bind="checked: InvType" />PSI Short Form
我有几个复选框,只有在选中特定单选按钮时才应选中:
<input data-bind="checked: OptionalValue1" id="chk1" type="checkbox" /> Checkbox 1<br/>
<input data-bind="checked: OptionalValue2" id="chk2" type="checkbox" /> Checkbox 2<br/>
<input data-bind="checked: OptionalValue2" id="chk3" type="checkbox" /> Checkbox 3<br/>
当用户单击不同的单选按钮时,也应选中不同的复选框组合。例如,如果在初始页面加载时选中“AIP”单选按钮,则还应选中前 2 个复选框。但是,当用户单击“PSI”单选按钮时,我只想选中第一个复选框,而其他复选框应不选中。
编辑:对不起,我不清楚复选框。所以这里有条件:
在初始页面加载时,单选按钮被设置,这会导致复选框相应地更新。每个不同的单选值都会导致复选框的不同组合被选中和未选中。
页面加载后,用户可以单击单个复选框并更改其值。这不会影响任何其他复选框或单选按钮。
到目前为止我的淘汰赛代码:
<script type="text/javascript">
var psiInvestigationViewModel = @Html.Raw(New JavaScriptSerializer().Serialize(Model));
function PSIInvestigationViewModel(data)
{
var self = this;
InvestigationType : ko.observable();
ko.mapping.fromJS(data, {}, self);
};
$(function ()
{
ko.applyBindings(new PSIInvestigationViewModel(psiInvestigationViewModel), $('#PSIInvestigation@(ViewData("UniqueID"))')[0]);
});
如果有人可以向我展示根据单选按钮更改更新复选框所需的代码,那么我将不胜感激。
谢谢