我无法在webstorm soft中预览html

时间:2014-11-17 12:29:43

标签: webstorm

我在运行它时无法预览webstorm 9.0.1中的html文件,它显示web page is not available,因为在地址栏中显示localhost:63342/---project folder.---。如何从本地硬盘html文件访问。 而且,另一个问题是我可以在google chrome / firefox中预览html作为docable吗?

2 个答案:

答案 0 :(得分:0)

要访问http://localhost,您需要运行本地服务器(如XAMPP或WAMPP)。如果您没有本地主机服务器(或者您不知道计算机中是否存在该主机),则无法访问http://localhost。这意味着任何*.php文件都将无法使用 如果您是字体端开发人员,则不需要服务器。您可以直接访问*.html文件:file:///C:/path/to/file.html(在浏览器网站网址框中)。此外,要使任何外部源工作,该文件的路径必须是相对的:

//C://myProject
myProject
 |-index.html
 \
  css
   |-styles.css
 \js
   |-functions.js

您输入浏览器网址栏:file:///C://myProject/index.html

您的index.html看起来像这样:

<html>
    <head>
        <script src="js/functions.js"></script>
        <-- WRONG:
        <script src="http://localhost/js/functions.js"></script>
        <script src="C:/myProject/js/functions.js"></script> // valid, but better to avoid
        -->
    </head>
</html>

答案 1 :(得分:0)

要在WebStorm中预览磁盘上的HTML文件(使用file:///协议),请在选择浏览器时按住Shift键