/*********************************************************** * * 公共js函数 * ***********************************************************/ function commonFunction() { // check value is null or empty this.checkIsEmpty = function(obj) { var flag = true; for(var i=0; i { var e = obj.item(i); if(e.isRequired) { if(e.value=='') { alert(e.errorSForEmpty); e.focus(); flag = false; break; } }
// return an Element By id object for what id. this.$getElementById = function(id) { var e = document.getElementById(id);
if(e!='undefined') { return e; }
return; }
// return an Element By name object for what id. this.$getElementsByName = function(id) { var e = document.getElementsByName(id);
if(e!='undefined') { return e; }
return; } }
贴一张效果图片:
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn