如何在Visual Studio Code中调用浏览器运行HTML代码

微软刚发布的Visual Studio Code还不支持安装扩展,没有内置的HTML预览功能。如果想要编辑HTML之后直接运行,可以 ctrl+shift+p 搜索 Configure Task Runner. 回车之后打开 tasks.json,修改一下:

?
1
2
3
4
5
6
7
8
{
     "version" "0.1.0" ,
     "command" "explorer" ,
     "windows" : {
         "command" "explorer.exe"
     },
     "args" : [ "test.html" ]
}

然后切换回test.html,通过快捷键ctrl+shift+b就可以直接调用系统默认浏览器来运行HTML代码。

如何在Visual Studio Code中调用浏览器运行HTML代码_第1张图片

这个问题我已经在StackOverflow上做了回复:http://stackoverflow.com/questions/30039512/how-to-view-my-html-code-in-broswer-with-visual-studio-code

你可能感兴趣的:(vscode)