相对图像路径在 FireFox 中不显示图像

发布于 2024-10-05 17:55:27 字数 384 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

居里长安 2024-10-12 17:55:42

尝试使用正斜杠而不是反斜杠。

Try using forward slashes instead of backslashes.

明月松间行 2024-10-12 17:55:40

反斜杠 (\) 是 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"

The generic syntax uses the slash ("/"), question mark ("?"), and number sign ("#") characters to delimit components that are significant to the generic parser's hierarchical interpretation of an identifier.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文