这应该是属于入门级的js文章了,我们js 判断变量是否为空实例简单介绍一下吧。
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>js 判断变量是否为空</title>
<script>
function s(){
var tt=document.getelementbyid("dw").value;
alert(tt);
if(tt==null || tt==""){
alert("输入内容,不能为空哦");
}
else{
alert(tt);
}
return false;
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label for="textfield"></label>
<input type="text" name="dw" id="dw" />
<input type="submit" name="button" id="button" value="提交" onclick="网页特效:return s();" />
</form>
</body>
</html>
那肯定变量不是空的啊,教你一种方法,你这样写:
function s(){
var tt=document.getelementbyid("dw").value;
ssssss();//程序运行至此会报错,点击调试,用调试工具跟进来看看到底什么情况
if(tt!=null){
alert("bukong");
}
else{
alert("kong");
}
}
另,附一个判断是否为空的方法:
var isnull = function(obj)
{
try{return obj==0?false:!obj}catch(e){return false;}
}