1

I really want someone to help me I have a serious issue with vs code live server everything is perfectly working but once I completed my project I can't open my web pages without turning the live server on, whenever I want to check my web pages I have to open it in the vs code then turn on the live server is there a way I can fix it I want to open web page directly rather first open it in vs code than turn on the live server...

4

2 回答 2

0

转到保存 html 文件的文件夹,然后双击 html 文件,以便在浏览器中将其作为 html 文档打开

于 2021-05-26T10:19:36.540 回答
0

尝试更具体。“直接打开”是什么意思?你的意思是双击html文件?你在编码什么?只有带有库的 html/css 或 js?

如果双击 html 文件会发生什么?

浏览器打开html:

它是否打开浏览器并显示没有样式的页面?如果您没有看到您的 css 应用,您可能在 css 链接中添加了一个前置斜杠。将您的 css 链接更改为与此类似的内容(路径应指向您的 css 文件):

<link rel="stylesheet" href="css/style.css">

注意:它们在 href 属性值中没有前置斜杠。前置斜杠将在实时服务器环境中工作,但当浏览器在本地读取文件(= 双击)时会失败。

浏览器打不开html:

如果双击 html 文件时浏览器未打开,则您的浏览器未配置为启动 html 文件的程序。您可以改为将 html 文件拖到打开的浏览器窗口中。并在互联网上查看如何更改设置以在双击 html 文件时启动您喜欢的浏览器。

于 2021-05-26T10:39:12.080 回答