2

我正在使用 jQuery 1.9.1、jQM 1.3 和淘汰赛 2.2.1。

我的html如下:

<div data-role="page" id="coloursView">
    <div data-role="content">
        <fieldset data-role="controlgroup">
            <legend>Colour:</legend>
            <input type="radio" name="colours" data-bind="checked: colour" id="radio-1" value="1" />
            <label for="radio-1">Red</label>
            <input type="radio" name="colours" data-bind="checked: colour" id="radio-2" value="2" />
            <label for="radio-2">Blue</label>
            <input type="radio" name="colours" data-bind="checked: colour" id="radio-3" value="3" />
            <label for="radio-3">Green</label>
        </fieldset>
    </div><!--/content -->
</div><!--/page -->

我的视图模型也很简单:

function ColoursViewModel() {
  this.template = "coloursView";
  this.colour = ko.observable("1");
  this.label = ko.observable(); // custom binding
}

现在,我想获取所选颜色的描述,而不是值。在我看来,我需要一个自定义绑定,比如这个:

ko.bindingHandlers.label = {
    update: function(element, valueAccessor) {
        var value = ko.utils.unwrapObservable(valueAccessor());
        $("radio", element).filter(function(el) { return $(el).text() === value; }).prop("checked", "checked");
    }
};

但我无法获得相关标签的文本 - 文本标签。

有人可以帮忙吗?提前致谢

4

2 回答 2

1

更新

这是另一种仅查找:checked项目并删除文本中的空格的方法。

复选框

$('input[type=checkbox]').each(function () {
 if ($(this).is(':checked')) {
  var checkbox = $(this).prev('label').text();
  alert('Checkbox: ' + checkbox.replace(/\s+/g, ' '));
 }
});

收音机

$('input[type=radio]').each(function () {
 if ($(this).is(':checked')) {
  var radio = $(this).prev('label').text();
  alert('Radio: ' + radio.replace(/\s+/g, ' '));
 }
});

更新的演示


复选框

$('div.ui-checkbox').find('span.ui-btn-text').text();

收音机

$('div.ui-radio').find('span.ui-btn-text').text();
于 2013-04-23T00:02:09.790 回答
0

对不起,如果我回答自己,但我想我明白了。至少对于无线电输入。

现在,我在字段集级别有一个自定义绑定处理程序,以保持标记干净且更具可读性,因为我可以:

<fieldset data-role="controlgroup" id="front-colours" data-bind="frontColourLabel: frontColour">
    <legend>Front Colour: <span data-bind="text: frontColourDescription"></span> (Value: <span data-bind="text: frontColour"></span>)</legend>
    <input type="radio" name="front-colours" data-bind="checked: frontColour" id="fc-radio-1" value="red" />
    <label for="fc-radio-1">Red</label>
    <input type="radio" name="front-colours" data-bind="checked: frontColour" id="fc-radio-2" value="blue" />
    <label for="fc-radio-2">Blue</label>
    <input type="radio" name="front-colours" data-bind="checked: frontColour" id="fc-radio-3" value="green" />
    <label for="fc-radio-3">Green</label>
</fieldset>

这是我提出的绑定处理程序:

ko.bindingHandlers.frontColourLabel = {
    update: function(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {
        ko.utils.unwrapObservable(valueAccessor()); 
        var id = $('input:radio[name='+element.id+']:checked').prop("id");
        var radioText = $('label[for=' + id + ']').text();
        viewModel.frontColourDescription(radioText);
    }
};

这里唯一棘手的部分是字段集的 id 等于无线电组的名称,因为很容易过滤掉我想要处理的无线电组。

工作示例:http: //jsfiddle.net/h7Bmb/1/

我现在尝试让复选框部分工作。有人可以帮忙吗?

于 2013-04-25T23:24:13.430 回答