How to enable Intellisense for JavaScript in Visual Studio Code

后端 未结 4 1320
我寻月下人不归
我寻月下人不归 2020-12-05 18:16

I want to use VS Code to try out the examples of a JavaScript book, but there\'s no intellisense, or at least I don\'t know how to activate it.

In Visual Studio this

相关标签:
4条回答
  • 2020-12-05 18:34

    It worked for me, when the file had a .js extension. I didn't get any intellisense when I pasted it into .html file between script tags.

    Edit To Add: You can also change the Language Mode by clicking 'HTML' in the bottom of the VS Code window and change it to 'JavaScript'.

    0 讨论(0)
  • 2020-12-05 18:41

    Currently Unsupported

    JS intellisense doesnt work in HTML script tag - VSCode GitHub Issues #4369

    Smart Javascript suggestions inside HTML files no loger working after Visual Studio Code update - StackOverflow

    0 讨论(0)
  • 2020-12-05 18:44

    Visual Studio Code version 1.4.0 does not support CSS intelli-sense.

    I have an extension for CSS style, id and class intelli-sense for html documents:

    Features:

    • Style tag completion and hover.
    • Style attribute completion and hover.
    • Id attribute completion.
    • Class attribute completion.
    • Scans workspace folder for css files.
    • Supports optional resource.json file for fine tuned resource selection.

    Link:

    https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css

    0 讨论(0)
  • 2020-12-05 18:46

    Starting with the November 2016 (version 1.8) release, Visual Studio Code now fully supports IntelliSense for JavaScript in HTML.

    Note that the language support doesn't follow script includes, it only knows about definitions made in the same file.

    0 讨论(0)
提交回复
热议问题