为什么我的网站无法加载某些图像?
这是我的网站试用上传:
似乎有些图像未加载,并且 div即使没有触发,具有 display:none
也会自行加载。未上传时它可以完美运行。 请查看我的 jquery 或任何代码并告诉我我做错了什么。 请问我该如何解决这个问题?非常感谢!
This is my website tryout upload:
it seems that some images are not loaded, and the divs which have display:none
also load themselves even if not triggered. It works perfectly when it's not uploaded.
Please view my jquery or whatever code and tell me what I did wrong.
How can I fix this please? Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于图像 - 您的服务器区分大小写,因此您的 HTML 正在尝试加载文件:
http://grozav.t15.org/thumb/RealEstate.jpg
当实际文件名是:
http://grozav.t15.org/thumb/realestate.jpg
更新您的 HTML正确的文件名。
Regarding the images - your server is case sensitive, so your HTML is trying to load the file:
http://grozav.t15.org/thumb/RealEstate.jpg
when the actual filename is:
http://grozav.t15.org/thumb/realestate.jpg
Update your HTML with the correct filenames.