本教程操作环境:windows7系统、javascript1.8.5版,dell g3电脑。
javascript判断字符是否为空的方法:
js代码:
//判断字符是否为空的方法function isempty(res){ if(typeof res== "undefined" || res== null || res== ""){ return true; }else{ return false; }}
js调用:
if (!isempty(value)) { alert(value);}
相关免费学习推荐:javascript(视频)
以上就是javascript如何判断字符是否为空的详细内容。
