无法使用谷歌浏览器
您好,当我在 Internet Explorer 中运行此代码时,我无法使用 img src="E:\pic1.jpeg" 在 chrome 中加载图像,但它在 chrome 中不起作用。另一方面,当我给出图像的名称而不是 src 中的路径时,它的工作...
请帮助...问候 Prabjot
hi i m not able to load an image in chrome using img src="E:\pic1.jpeg" when i run this code in internet explorer its working bt not in chrome . on the other hand when i give the name of image instead of path in src then its working ...
plz help ... regards Prabjot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Chrome 可能不处理文件系统路径(或者至少不使用 file:// )。即使这确实有效,该链接也只能在您的本地计算机上有效,因为浏览您网站的人在该位置不会有图像。
您应该使用资源(即图像)的 URL,而不是文件路径。
Chrome probably doesn't handle file system paths (or at least not without using file://). Even if this did work, that link would only work on your local machine as the person browsing your website wouldn't have an image at that location.
You should be using URLs for your resources (i.e. images), not file paths.
您是否尝试过使用 file:// 作为图像本地路径的前缀?
Have you tried using file:// to prefix your image local path?