数字加引号原来会当作文本处理 如: document.write(“1”+“6”) 结果:16
但是不加引号 如: document.write(1+6) 结果:7 懂了吧?
字符串+字符串=字符串
字符串+数值=字符串
数值+数值=数值
类型不一样