如果div具有某些bg图像,请转到url

我试图检查一个div是否有特定的背景图像,如果它有图像,那么页面应该导航到一个url。

但是,我无法工作,我做错了什么?

case key.enter:
    if (letterIndex == 0 && $(this).hasClass('active')) {
           $(this).prev().remove();
    } else if ($('.content').css("background-image") === "url(img/screen-check.jpg)") { 
            // go to url
    }  else {
            $(this).closest('li').toggleClass('active');
    }
    break;

不确定下面的代码是否有效。 请尝试让我知道

 case key.enter:
        if (letterIndex == 0 && $(this).hasClass('active')) {
               $(this).prev().remove();
        } else if ($('.content').css("background-image") &&$('.content').css("background-image").indexOf('img/screen-check.jpg') >-1 ) { 
                // go to url
        }  else {
                $(this).closest('li').toggleClass('active');
        }
        break;
链接地址: http://www.djcxy.com/p/42211.html

上一篇: go to url if div has certain bg image

下一篇: Issue removing duplicate val() in :checked .map function