javascript判断字符串变量是否为空的方法
代码如下
if (typeof(ndesc)=="undefined" || ndesc=='' || ndesc==null)
{
ndesc="1111!";
}
ps:ndesc 变量没有初始化 typeof(ndesc) 都是undefined
判断数字是否为空
var startv = parseInt($(‘#myTargetElement’).text());
if (isNaN(startv)) {
startv = 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/18791.html