Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/01/2012, 00:33
Avatar de besotico
besotico
 
Fecha de Ingreso: junio-2008
Ubicación: Iquique, Chile, Chile
Mensajes: 70
Antigüedad: 16 años, 5 meses
Puntos: 0
Respuesta: onmouse...varias

Bueno, si alguien tiene el mismo problema alguna vez, logré resolverlo, la verdad es que es primera vez que le meto mano a js, siempre le tuve miedo, les dejo el código de lo que hice

Código HTML:
Ver original
  1. <img src="images/moduloa_114.jpg"  onMouseOver="check('over', 'a','114',this.id);" onMouseOut="check('out', 'a','114',this.id);" onclick="check('check', 'a','114',this.id);" id="images/moduloa_114.jpg" alt="" name="images/moduloa2_114" />

Código Javascript:
Ver original
  1. <script type="text/javascript">
  2. //<![CDATA[
  3. *
  4.  function testchk(){
  5. var valor = document.getElementById('chk_id').checked;
  6. alert(valor);
  7. }
  8.  
  9.  
  10.  
  11.  
  12. function check(funcion,modulo,checkboxid,imag) { *
  13. var valor = document.getElementById(checkboxid).checked;
  14.  
  15.  
  16. if(funcion == "over"){
  17.     if(valor ==false) {
  18.        
  19.         document.getElementById(imag).src = "images/modulo" + modulo + "2" + "_" + checkboxid + ".jpg";
  20.  
  21.     }
  22. }
  23.  
  24. if(funcion == "out"){
  25.     if(valor ==false) {
  26.         document.getElementById(imag).src = "images/modulo" + modulo + "_" + checkboxid + ".jpg";
  27.     }
  28.  
  29. }
  30.  
  31. if (funcion == "check") {
  32. *
  33.     if (valor == false){
  34.         document.getElementById(checkboxid).checked = true; *
  35.         document.getElementById(imag).src = "images/modulo" + modulo + "v" + "_" + checkboxid + ".jpg";
  36.     }
  37.     else{
  38.         document.getElementById(checkboxid).checked = false; *
  39.         document.getElementById(imag).src = "images/modulo" + modulo + "_" + checkboxid + ".jpg";  *
  40.     }
  41. } //if funcion check
  42.  
  43. } *
  44. //]]>
  45. </script>

puede ser útil para alguien :)