我有一个文本框和一个像这样的选择框:
<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)
但我希望有一个脚本,其中
word
这可能吗?我怎样才能做到这一点?谢谢大家的帮助!
答案 0 :(得分:6)
input[type="number"]
:http://jsfiddle.net/T3Sxb/15/ 我正在使用数据属性,以便您可以为每个项目声明正确的单数/复数形式。简单地添加“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();
答案 1 :(得分: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] );
}
});
});
答案 2 :(得分: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')));
}
});
});