时间:2024-10-09 14:02:04
导读:jquery怎么样判断是否为空 jquery判断是否为空的方法: 1. 使用undefined判断,代码为【if(C==null||C==undefined||C==""){//代码}】; 2. 判断长度大小,代码为......
jquery怎么样判断是否为空
jquery判断是否为空的方法:
1. 使用undefined判断,代码为【if(C==null||C==undefined||C==""){//代码}】;
2. 判断长度大小,代码为【if(C.length==0){//代码}】。