jquery、ajax数据求和无法正常工作

发布于 2024-10-23 00:28:29 字数 1060 浏览 9 评论 0原文

$.post('ajax_ceneizbaze.php', function(cenovnik){

                                    if(cenovnik){

                                        cenastr=cenovnik.cenastrana;
                                        cenadinamika=cenovnik.cenadinamika;
                                        cenabaza=cenovnik.cenabaza;
                                        cenakorpa = cenovnik.cenakorpa;
                                        cenacms = cenovnik.cenacms;
                                        inkrementodrzavanje = cenovnik.cenaodrzavanje;
                                        rezz = parseInt(cenastr+cenadinamika);
                                        alert(rezz);




                                   }
                                   else alert('bla bla..');


                                },'json');

cenastr 的初始值为 25,cenadinamika 的初始值为 50,Ajax 在这个我的示例中完美运行,但是当我尝试对 cenastr 和 cenadinamika 的值求和时,我得到输出 2550,而不是 75?为什么我不能将其转换为整数并获得这两者的总和。它只以字符串格式输出结果。我尝试将 parseInt 放置在求和操作之前,但没有帮助。

$.post('ajax_ceneizbaze.php', function(cenovnik){

                                    if(cenovnik){

                                        cenastr=cenovnik.cenastrana;
                                        cenadinamika=cenovnik.cenadinamika;
                                        cenabaza=cenovnik.cenabaza;
                                        cenakorpa = cenovnik.cenakorpa;
                                        cenacms = cenovnik.cenacms;
                                        inkrementodrzavanje = cenovnik.cenaodrzavanje;
                                        rezz = parseInt(cenastr+cenadinamika);
                                        alert(rezz);




                                   }
                                   else alert('bla bla..');


                                },'json');

initial value for cenastr is 25, and for cenadinamika is 50 ,Ajax works perfectly in this mine example, but when i try to sum values cenastr and cenadinamika i get output 2550 , instead 75? why i cant convert that to integer and to get sum of thoose two. it only output result in string format. i tried parseInt to place before sum operation but it doesnt helps.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

你必须解析每个字符串:

rezz = parseInt(cenastr) + parseInt(cenadinamika);

尝试一下

you have to parseInt each of the strings:

rezz = parseInt(cenastr) + parseInt(cenadinamika);

Try that out

送舟行 2024-10-30 00:28:29

http://www.javascripter.net/faq/convert2.htm - 这可能有帮助。在计算之前需要将字符串转换为数字!

http://www.javascripter.net/faq/convert2.htm - this might help. You need to convert the strings to numbers before the calculation!

纸伞微斜 2024-10-30 00:28:29

+ 运算符有双重用途。对于字符串,它将它们连接起来:

“25”+“50”=“2550”

对于数字,它将它们相加。

25 + 50 = 75

因此,我们可以推断出您的两个变量是字符串,并且您解析将它们连接为整数的结果,得到 2550。

在使用 + 之前,您需要将每个单独的值解析为 int 运算符来添加它们:

rezz = parseInt(cenastr,10) + parseInt(cenadinamika,10);

The + operator has a dual purpose. On strings it concatenates them:

"25" + "50" = "2550"

With numbers, it sums them.

25 + 50 = 75

Therefore we can deduce that your two variables are strings, and that you parse the result of concatenating them to an integer, giving you 2550.

You need to parse each individual value to an int before using the + operator to add them:

rezz = parseInt(cenastr,10) + parseInt(cenadinamika,10);
等风也等你 2024-10-30 00:28:29

在添加之前确保变量是数字:

cenastr= +cenovnik.cenastrana;
cenadinamika= +cenovnik.cenadinamika;
//...
rezz = cenastr + cenadinamika;

Make sure the variable are numbers before adding:

cenastr= +cenovnik.cenastrana;
cenadinamika= +cenovnik.cenadinamika;
//...
rezz = cenastr + cenadinamika;
葮薆情 2024-10-30 00:28:29

parseInt 将处理加法的结果,两者都是字符串,将是连接。

要么:

parseInt(cenastr) + parseInt(cenadinamika)

要么使用一元运算符:

(+censtr) + (+cenadinamika);

parseInt will be working on the result of the addition, which, both being strings, will be the concatenation.

Either:

parseInt(cenastr) + parseInt(cenadinamika)

or use the unary operator:

(+censtr) + (+cenadinamika);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文