我正在处理一个基本的积分计数器小部件。我有一个早先的问题得到了回答,以帮助我开始行动。但我有一个最后的问题。基本上,我有一个将返回true或false的函数,但我需要第三个选项。
逻辑是:
我认为我做对了,只是不确定如何完成这个功能。
var check = false;
function titleInc() {
var length = $('#title').val().length;
if (length >= 5 && length <= 10 && !check) {
check = true;
return true;
} else if (check && length < 5 && length > 10) {
// Set the function to return DECREMENT
} else {
return false;
}
$('#title').blur(function () {
var current = parseInt($('#end_val').val(), 10);
if (titleInc()) {
$('#end_val').val(current + 12);
} else if( ){
// THERE NEEDS TO BE A WAY TO DECREMENT
}
});
});
答案 0 :(得分:3)
var options = {
increment: 1,
decrement: 2,
doNothing: 3
};
function titleInc() {
var length = $('#title').val().length;
if (length >= 5 && length <= 10 && !check) {
check = true;
return options.increment;
} else if (check && length < 5 && length > 10) {
return options.decrement;
} else {
return options.doNothing;
}
$('#title').blur(function () {
var current = parseInt($('#end_val').val(), 10),
option = titleInc();
if (option === options.increment) {
$('#end_val').val(current + 12);
} else if(option === options.decrement){
$('#end_val').val(current - 12);
}
});