函数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.
  1. function errorOutputPre(element_form){
  2. errorOutput(element_form,msgType,msgLanguage,msgXmlDoc,errMsgCat);
  3. }
  4.  
  5. function errorOutput(element_form,msgType,msgLanguage,msgXmlDoc,errMsgCat){
  6. todoOk=false;
  7. switch(msgType){
  8. case 'alert':alert(loadXmlReports(errMsgCat,msgLanguage,msgXmlDoc));
  9. element_form.onkeypress= function(){
  10. this.style.backgroundColor='#FFFFFF';
  11. }
  12. break;
  13.  
  14. case 'id' : document.getElementById('errMsg').innerhtml=loadXmlReports(errMsgCat,msgLanguage,msgXmlDoc);
  15. element_form.onkeypress= function(){
  16. this.style.backgroundColor='#FFFFFF';
  17. document.getElementById('errMsg').innerHTML='';
  18. }
  19. break;
  20.  
  21. case 'sibling' : element_form.nextSibling.innerHTML=loadXmlReports(errMsgCat,msgLanguage,msgXmlDoc);
  22. element_form.onkeypress= function(){
  23. this.style.backgroundColor='#FFFFFF';
  24. this.nextSibling.innerHTML='';
  25. }
  26. break;
  27. }
  28. element_form.style.backgroundColor='#FFFF99';
  29. element_form.focus();
  30. }

以上是关于函数errorOutputPre y errorOutput的主要内容,如果未能解决你的问题,请参考以下文章

jmeter报错:内存溢出

matlab里rem和mod函数区别?

数学笔记——导数4(反函数的导数)

C语言 不用循环和函数求 X的Y次方

回归函数(回归方程)到底是啥函数?条件期望函数还是直接以x为自变量y为因变量的函数?

JavaScript:函数