js判断文本框是否为空
2014-02-27
展开全部
function check(){
var oName = document.myform.name;
if(oName .value.length==0){
alert("不能为空");
oName.focus();
return false;
}else{return true;}
}
var oName = document.myform.name;
if(oName .value.length==0){
alert("不能为空");
oName.focus();
return false;
}else{return true;}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script type="text/javascript">
function passw_ens()
{
var pw1=document.getElementById("new_pw").value;
if(pw1!=null)
{
alert("no problem");
}
else{
alert(" 文本框没有值");
}
}
<input type="text" id="new_pw" />
function passw_ens()
{
var pw1=document.getElementById("new_pw").value;
if(pw1!=null)
{
alert("no problem");
}
else{
alert(" 文本框没有值");
}
}
<input type="text" id="new_pw" />
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |