博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
判断一个变量是否为空的方法
阅读量:6290 次
发布时间:2019-06-22

本文共 138 字,大约阅读时间需要 1 分钟。

var a;

if($.trim(a)=='' || a==undefined || a==null)

如果用$.trim(a)的话,就不用使用 "==undefined" 了,因为,如果使用了$.trim()的话,即使他没有值,$.trim()后,

获取的为 " "。如下:

 

转载地址:http://xykta.baihongyu.com/

你可能感兴趣的文章