window.open(“\\\\localhost\\”);不适用于 win7(x64) ie8
window.open("\\\\localhost\\");
不适用于 64 位 win7 上的 ie8。即说“确保路径或互联网地址正确”。它可以在 32 位 ie8 的同一版本上运行。有什么想法吗?或者使用 Internet Explorer 访问像 \\localhost\
这样的路径的任何不同方式?
我正在尝试像文件路径一样打开 \\localhost
。当您在 ie 上写入 \\localhost
时,它会打开“网络 > localhost”,
在错误详细信息中,ie 会显示“消息:访问被拒绝。”。
可能与windows的安全设置有关。知道 Windows 的哪些设置可能会导致这种情况吗?
window.open("\\\\localhost\\");
is not working on ie8 on 64bit win7. ie says "make sure the path or internet address is correct". it's working on same verson of ie8 on 32 bit. any idea? or any different way to access a path like \\localhost\
using internet explorer?
i'm trying to open \\localhost
like a file path. when you write \\localhost
on ie, it opens "Network > localhost"
In error details, ie says "Message: Access is denied.".
It may related to security settings of windows. Any idea which settings of windows might cause that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在主机中运行 httpd http://localhost/... 必须工作。
否则,最好使用 file:///... 来访问本地文件。
我不知道 \\localhost\... 为何能在你的 32 位机器上工作。
也许,IE 8 脚本引擎确实将其解释为简单的文件路径,然后尝试从本地 SMB 服务器访问该路径。您是否像在 32 位计算机中一样启用了 Windows 文件共享?
无论如何,我不相信 URL 方案与 IE 以外的其他浏览器兼容。
If you are running httpd in your host http://localhost/... must work.
Otherwise, better use file:///... to access local file.
I don't know how come \\localhost\... did work for your 32bit machine.
Maybe, IE 8 script engine did interpret that as a simple file path, and then tried to access the path from local SMB server. Did you enabled windows file sharing as you did in 32bit machine?
Anyway I do not believe that URL scheme is compatible with other browsers than IE.
当我将网站添加到 ie 上的“受信任的网站”时,它就起作用了。
It's worked when I add the site to "Trusted Sites" on ie.
本地主机需要端口号。在浏览器中打开目标站点并获取地图路径。它应该遵循以下语法;
window.open('http://localhost:****/SomeViewName/Some.cshtmlfile', '_blank' + ** *。开始);
Localhost requires a port number. Open the target site in the browser and get the map path. It should follow the syntax below;
window.open('http://localhost:****/SomeViewName/Some.cshtmlfile', '_blank' + ***.start);