1

一旦选择了单选按钮,我想禁用或隐藏单选按钮 - 这样用户就无法比较价格,因为单选按钮链接到价格并在选中单选按钮后显示价格。我正在使用 knockout.js 链接选定的单选按钮并显示价格。并在 jquery 上找到了一种隐藏未选择单选按钮的方法,但我无法将两者合并在一起。

请看下面的代码:

<div class="stepTwo">
    <div class="middleTitle">
        <p>
        </p>
    </div>
    <div data-bind="with: bin2ViewModel">
        <div class="divRadiobtns" data-bind="foreach: availableGroups">
            <input type="radio" id="makeOpacityHide" class="radioOptions" name="retailerGroup"
                data-bind="checked: $parent.selectedGroupOption, value: retailerproductId" /><span
                    class="radioOptionsA" data-bind="css: { 'radioOptionsA-checked': $parent.selectedGroupOption()==retailerproductId() }">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
        </div>
        <div data-bind="with: selectedRetailerGroup">
            <span class="actualPrice" data-bind="text: price" />
        </div>
        <div data-bind="with: selectedRetailerGroup">
            <input type="hidden" name="retailerProductId" id="retailerProductId" class="retailerProductId"
                data-bind="value: retailerproductId" />
        </div>
    </div>
</div>
<script type="text/javascript">
//<![CDATA[
    //jquery
    $(document).ready(function () {
        $("input[name$='retailerGroup']").click(function () {
            var test = $(this).val();

            $("input.radioOptionsA").hide();

        });
    });


    //knockout
    var Bin2ViewModel = function () {
        var self = this;
        this.selectedRetailerGroup = ko.observable();
        this.selectedGroupOption = ko.observable();
        this.selectedGroupOption.subscribe(function (newVal) {
            var items = $.grep(self.availableGroups(), function (item) { return item.retailerproductId() == newVal; });
            self.selectedRetailerGroup(items[0]);
        });
        this.selectedGroup = ko.observable();
        this.availableGroups = ko.observableArray(
            [new RetailerViewModel("21290", "£1.80"),
                new RetailerViewModel("302852", "£2.55"),
                new RetailerViewModel("422974", "£2.55")
            ]);
    };


    var RetailerViewModel = function (retailerproductId, price) {
        this.retailerproductId = ko.observable(retailerproductId);
        this.price = ko.observable(price);
    };
    ko.applyBindings({ bin2ViewModel: ko.observable(new Bin2ViewModel()) });
//]]>
</script>

有谁知道让它们一起工作的方法,或者有没有一种很好的方法可以在淘汰赛中隐藏单选按钮?

http://jsfiddle.net/afnguyen/MMqzv/3/

我还在 jsfiddle 中附加了 jquery - 这显示了我想要的,因为选定的单选按钮类名称发生了变化,因此不应该隐藏:

http://jsfiddle.net/afnguyen/5mmt2/1/

谢谢

4

2 回答 2

1

如果你想拥有一个纯粹的 Kncokout 解决方案,你可以在enable binding的帮助下达到同样的效果:

因此,您希望在没有选择任何一个按钮时启用该按钮,这将转换以下绑定:

data-bind="enable: !$parent.selectedGroupOption()"

因此,您的代码的完整示例:

<input type="radio" id="makeOpacityHide" 
       class="radioOptions" name="retailerGroup"
       data-bind="checked: $parent.selectedGroupOption, 
                  value: retailerproductId, 
                  enable: !$parent.selectedGroupOption()" />

演示JSFiddle

于 2013-02-04T16:19:43.910 回答
0

尝试这个。您可以将 css 属性“禁用”更改为 =“禁用”:

    $(".class").attr(
        'disabled', 'disabled'
    );
于 2013-02-04T15:44:20.803 回答