本地文件路径在 Chrome 浏览器中不起作用
我的 html 页面中的内联 javascript 有问题。
我在 javascript 中使用以下代码。
ifrm.document.write('');< /code>
这在所有浏览器上都工作得很好,但不适用于 Chrome。
有什么解决方法吗?
谢谢
I have an issue with my inline javascript which is in html page.
I'm using following code in the javascript.
ifrm.document.write('<link rel="stylesheet" type="text/css" href="file:///C:/Project-2/parent.css">');
This works perfectly fine on all the browsers, but not with Chrome.
Is there any workaround?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,相对路径就是这里的方法。截至目前,如果您尝试将此页面部署到网络上,则所有链接都不起作用(假设您通过绝对路径引用驻留在 PC 上的文件)。
以下是一些解释绝对路径与相对路径的好材料: http:// www.coffeecup.com/help/articles/absolute-vs-relative-pathslinks/
Yes relative paths would be the way to go here. As of right now if you tried to deploy this page to the web then none of the links would work (assuming you're referencing files that reside on your PC via absolute paths).
Here is some good material explaining absolute vs. relative pathing: http://www.coffeecup.com/help/articles/absolute-vs-relative-pathslinks/