相对图像路径在 FireFox 中不显示图像
我正在尝试使用 Iframe 打开 html 页面。 Html 页面有一些文本和图像。
图像源使用相对路径指定,例如 ....\Images\Img1.jpeg。
它在 IE 和 Chrome 中运行良好。在 Firefox 中,图像路径变得像 -
http ://localhost:1657/WebSite/Stories/kunwar/..%5C..%5CImages%5CStory_images%5Cimg1.jpeg
我在这里缺少什么?
I am trying to open a html page using Iframe. The Html page has some text and Images.
The Image Source is specified using releative path for e.g. ....\Images\Img1.jpeg.
Its working fine in IE and Chrome. In firefox the Image Path is becoming like-
http://localhost:1657/WebSite/Stories/kunwar/..%5C..%5CImages%5CStory_images%5Cimg1.jpeg
What am I missing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用正斜杠而不是反斜杠。
Try using forward slashes instead of backslashes.
反斜杠 (
\
) 是 Windows 分隔符,但在 url 和 uri 中,即使您的服务器使用 Windows 操作系统,您也需要使用斜杠 (/
)。请参阅 RFC 3986“统一资源标识符 (URI):通用语法”,第 1.2 节。 3 "分层标识符"
Backslash (
\
) are the Windows separators, but in url and uri, you need use slash (/
), even if your server use a Windows OS.See RFC 3986 "Uniform Resource Identifier (URI): Generic Syntax", section 1.2.3 "Hierarchical Identifiers"