函数errorOutputPre y errorOutput
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数errorOutputPre y errorOutput相关的知识,希望对你有一定的参考价值。
Establece la variable de validación en false y genera el mensaje de error de validación en función de los parámetros introducidos.Recibe el elemento y los parámetros de validación.
function errorOutputPre(element_form){ errorOutput(element_form,msgType,msgLanguage,msgXmlDoc,errMsgCat); } function errorOutput(element_form,msgType,msgLanguage,msgXmlDoc,errMsgCat){ todoOk=false; switch(msgType){ case 'alert':alert(loadXmlReports(errMsgCat,msgLanguage,msgXmlDoc)); element_form.onkeypress= function(){ this.style.backgroundColor='#FFFFFF'; } break; case 'id' : document.getElementById('errMsg').innerhtml=loadXmlReports(errMsgCat,msgLanguage,msgXmlDoc); element_form.onkeypress= function(){ this.style.backgroundColor='#FFFFFF'; document.getElementById('errMsg').innerHTML=''; } break; case 'sibling' : element_form.nextSibling.innerHTML=loadXmlReports(errMsgCat,msgLanguage,msgXmlDoc); element_form.onkeypress= function(){ this.style.backgroundColor='#FFFFFF'; this.nextSibling.innerHTML=''; } break; } element_form.style.backgroundColor='#FFFF99'; element_form.focus(); }
以上是关于函数errorOutputPre y errorOutput的主要内容,如果未能解决你的问题,请参考以下文章