VS Code 运行html文件

用VS Code编写html文件,想在VS Code中直接打开运行,配置以下:html

配置tasks.json

  1. 打开VS Code,点击“终端”,选择“配置任务”。
    imagechrome

  2. 选择“使用模板建立tasks.json文件”。
    imageshell

  3. 选择“Others”。
    imagejson

  4. tasks.json新建完成,默认以下图:
    imagewindows

  5. 修改tasks.jsonui

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "在Chrome中运行",
            "type": "process",  // [shell,process]
            "command": "Chrome",
            "args": ["${file}"],
            "windows": {
                "command": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"
            },
            "group": "build",
            "presentation": {
                // Reveal the output only if unrecognized errors occur.
                "reveal": "never"  //[always,never,silent]
            },
            // Use the standard MS compiler pattern to detect errors, warnings and infos
            "problemMatcher": "$msCompile"
        }
    ]
}

运行任务

选中须要运行的html文件,按住Ctrl+Shift+B,选择“在Chome中运行”,便可。
image3d

文章出处:https://allanhao.com/2018/09/25/vscode-run-html/code

相关文章
相关标签/搜索