我在 jquery 代码中有两个变量,如果 item.a 不存在,它会输出一个“null”,所以我想检查变量是否存在。这是代码:
.append( "<a>" + item.a + ", " + item.b + "</a>" )
如果没有“item.a”,则会导致
null, Blabla
我试过这个 if / else 语句,但它什么也没返回
.append( "<a>" + (item.a) ? item.a : + ", " + item.b + "</a>" )
任何的想法?