admin管理员组文章数量:1345016
These are the logical steps which I need to do with jquery:
x
is a 2 digit number(integer) derived from an input.value();
If var x is **not** 33 or 44
Convert this 2 digit number to string;
split the string in 2 parts as number;
Add these 2 values until they reduce to single digit;
Return var x value as this value;
Else
Return var x value literally as 33 or 44 whatever is the case;
Thanks!
These are the logical steps which I need to do with jquery:
x
is a 2 digit number(integer) derived from an input.value();
If var x is **not** 33 or 44
Convert this 2 digit number to string;
split the string in 2 parts as number;
Add these 2 values until they reduce to single digit;
Return var x value as this value;
Else
Return var x value literally as 33 or 44 whatever is the case;
Thanks!
Share Improve this question edited May 2, 2010 at 4:47 BalusC 1.1m376 gold badges3.7k silver badges3.6k bronze badges asked May 2, 2010 at 4:30 RichbyteRichbyte 511 gold badge1 silver badge2 bronze badges 2- Is just Javascript also acceptable? – BalusC Commented May 2, 2010 at 4:35
- sure but i missed one part: Add these 2 values (until they reduce to single digit); Return var x value as this value. – Richbyte Commented May 2, 2010 at 4:38
2 Answers
Reset to default 3if (x != 33 && x != 44) {
while (x > 9) {
var parts = ('' + x).split('');
x = parseInt(parts[0]) + parseInt(parts[1]);
}
return x;
} else {
return x;
}
Works only if the input is really max 2 digits long as you say, else you'll need to add the numbers in a for
loop over parts.length
. E.g.:
if (x != 33 && x != 44) {
while (x > 9) {
var parts = ('' + x).split('');
for (var x = 0, i = 0; i < parts.length; i++) {
x += parseInt(parts[i]);
}
}
return x;
} else {
return x;
}
I'd try:
function process (x) {
if ((x != 33) && (x != 44)) {
while (x > 9) {
x = Math.floor (x / 10) + (x % 10);
}
}
return x;
}
I see little reason to convert it to a string when you can use arithmetic operations.
本文标签: javascriptJquery convert integer to string and backStack Overflow
版权声明:本文标题:javascript - Jquery convert integer to string and back - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743777678a2537279.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论