日期:2014-05-16  浏览次数:20375 次

请问javascript有没有string.IsNullOrEmpty
如题,javascript有没有string.IsNullOrEmpty。如果没有,有没有什么好的代码?

先答先得分!

------解决方案--------------------
null和empty都为false
------解决方案--------------------
js更简单

c#:
if (string.IsNullOrEmpty(str)) ...

js:
if (!str) ...