4

我有一个文本框和一个这样的选择框:

<h3>Recipe Yield</h3>
<input style='width:100px' type="text" name="yield" class="small" />
<select name='yieldType'>
    <option value='Servings'>Serving(s)</option>
    <option value='Cups'>Cup(s)</option>
    <option value='Loaves (Loaf)'>Loaves (Loaf)</option>
</select>

这是一个 JSFiddle:http: //jsfiddle.net/T3Sxb/

如您所见,选择选项的形式为word(s)

但我想要一个脚本

  • 如果输入框中的数字为 1,则选项中的值的形式为word
  • 如果输入框中的数字大于 1,则选项中的值为复数。

这可能吗?我怎样才能做到这一点?感谢大家的帮助!

4

3 回答 3

6

我正在使用数据属性,以便您可以为每个项目声明正确的单数/复数形式。在许多情况下,简单地添加“s”是行不通的。

另请注意,零项通常(总是?)采用复数形式。

HTML

<input style='width:100px' type="text" id="yield" class="small" />
<select id='yieldType'>
    <option value='Servings' data-single="Serving" data-other="Servings"></option>
    <option value='Cups' data-single="Cup" data-other="Cups"></option>
    <option value='Loaves (Loaf)' data-single="Loaf" data-other="Loaves"></option>
</select>

JavaScript

var yield = $("#yield");
var yieldType = $("#yieldType");

function evaluate(){
    var single = parseInt(yield.val(), 10) === 1;
    $("option", yieldType ).each(function(){
        var option = $(this);
        if(single){
            option.text(option.attr("data-single"));
        }else{
            option.text(option.attr("data-other"));
        }
    });
}

// whatever events you want to trigger the change should go here
yield.on("keyup", evaluate);

// evaluate onload
evaluate();
于 2013-03-26T22:47:15.843 回答
3

你可以试试这个:http: //jsfiddle.net/T3Sxb/7/

var plural = {
    Serving: "Servings",
    Cup: "Cups",
    Loaf: "Loaves"
};

var singular = {
    Servings: "Serving",
    Cups: "Cup",
    Loaves: "Loaf"
};

$( "#pluralizer" ).on( "keyup keydown change", function() {
    var obj = parseInt( $( this ).val() ) === 1 ? singular : plural;
    $( "#YieldType option" ).each( function() {
        var html = $( this ).html();
        if ( html in obj ) {
            $( this ).html( obj[html] );
        }
    });
});
于 2013-03-26T22:48:07.183 回答
2

从用户体验的角度来看,我认为(s)是完全可以接受的。但无论如何,这个怎么样:

<option value='Servings' data-singular="Serving" data-plural="Servings">Servings</option>

然后:

// you should really use IDs ;)
$('input[name="yield"]').on('change', function () {
    var singular = parseInt($(this).val(), 10) === 1;
    $('select[name="yieldType"]').each(function () {
        if (singular) {
            $(this).val($(this.attr('data-singular')));
        } else {
            $(this).val($(this.attr('data-plural')));
        }
    });
});
于 2013-03-26T22:50:05.873 回答