28/03/2018, 19:57
|
|
Respuesta: Condicional cuando imagen dentro de clase function isBGimg(obj,i){
var img = obj.style.backgroundImage;
var spl = img.split("/");
img = spl[spl.lenght-1];
img = img.substring(0,-3); //remove: ');
if(img == i){ return true; }
return false;
}
Prueba con eso esa funcion debería darte true si la bg es es la misma que i
El parametro obj toma el objeto a verificar |