在html混编里面数字相加变成字符串


图片描述

具体代码如图,我想要的结果是1,2,3以此类推,但是现在的结果却是01,02.03以此类推。i的类型是number,但是后面的1我估计是字符串,但是使用parseInt(1)和number(1)或者i-1+2还是无效。求解!

css3 html5 JavaScript JSP

沉默的乌鸦 9 years, 11 months ago

'+i+1+' 改为 '+(i+1)+'
用括号把它俩括起来.

520025 answered 9 years, 11 months ago

因为是 i 先跟前面的字符串做的加法,得到一个字符串,然后这个字符串再跟 1 做加法,得到字符串。

Timor队长 answered 9 years, 11 months ago

加法操作符两边有字符串时,其他类型也会被转换成字符串类型


 var i = 0;
console.log(' ' + 1 + i); // ' 10'

可以用括号,让number先相加,再参与字符串拼接


 var i = 0
console.log(' ' + (1 + i)); // ' 1'

saber吾妻 answered 9 years, 11 months ago

据说


 " " + 1 = " 1"

那么为什么不弄个


 var vars = i + 1

再把vars放进去叱?

keylito answered 9 years, 11 months ago

Your Answer