Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 javascript 的 if 语句时遇到问题。它不识别是否有两个条件等于 1
我有这个代码:
if(variable=1 && another=1) { //do something }
问题是什么?
if(variable==1 && another==1) { //do something }
两个等号用于比较,一个等号用于赋值
正如@Johan 所说:=== 比较类型!!!
不要惹约翰:)
在if()条件下,您正在通过=
if()
=
这是错误的,
你应该通过使用来比较它==
==
if(variable == 1 && another == 1) { //do something }