javascript自动的校验函数(四)-NotNull校验

类别:网站制作 点击:0 评论:0 推荐:
/**
*checkNotNull函数校验此框输入的数据不为空,返回的值为真和假,true和false;
*
*Object目标对象,Desc中文的描述.
*/
function checkNotNull(Object,Desc)
{
 var strValue=Object.value;
 if(strValue.length==0)
 {
  alert("“"+Desc+"”不能为空,请修改!");
  Object.focus();
  return false;
 }
 else
 {
  return true;
 }
}

本文地址:http://com.8s8s.com/it/it31022.htm