0

我目前遇到一个我自己无法解决的问题。

我有一个简单的img标签,它具有src链接actually存在的图像的属性。然而页面没有显示它并且JavaScript控制台返回一个错误:

在此处输入图像描述

尽管我正在像这样加载图像,但它在 jQuery 中发现了错误:

<div class="login_with_fb">
    <a href="#" class="button rounded-3px"> Можеш да си направиш и регистрация чрез facebook </a>
</div>

.login_with_fb .button {
    background: #3a589b url(../img/fb_icon.png) no-repeat 10px center;
}

我使用 jQuery 的唯一地方是因为父 div 是隐藏的,当您单击一个按钮时它会设置display: block.

图像也可用。并且没有发现其他图像有任何问题。

4

1 回答 1

2

http://your-website.com/assets/js/phake.style.js在你的文件上改变这个

select_image: '../img/select.png', //image for the initial select
              ^  ^

也试试:

select_image: 'assets/img/select.png', //image for the initial select
于 2013-10-05T12:51:33.137 回答