微软刚发布的Visual Studio Code还不支持安装扩展,没有内置的HTML预览功能。如果想要编辑HTML之后直接运行,可以 ctrl+shift+p 搜索 Configure Task Runner. 回车之后打开 tasks.json,修改一下:
{
"version": "0.1.0",
"command": "explorer",
"windows": {
"command": "explorer.exe"
},
"args": ["test.html"]
}
然后切换回test.html,通过快捷键ctrl+shift+b就可以直接调用系统默认浏览器来运行HTML代码。
温馨提示:答案为网友推荐,仅供参考