美文网首页
解决vscode内html内css不提示,jquery代码不提示

解决vscode内html内css不提示,jquery代码不提示

作者: 卡布i | 来源:发表于2020-01-21 00:07 被阅读0次

html内css无提示解决方法:

1、打开vscode的设置:

2、在用户设置中添加下面代码

"editor.parameterHints": true,
  "editor.quickSuggestions": {
    "other": true,
    "comments": true,
    "strings": true
  }

如图

image

jQuery无提示解决方法:

image

在项目根目录建一个 jsconfig.json

{
  "exclude": ["node_modules"],
  "typeAcquisition": {
    "include": [
      "jquery"
    ]
  }
}

效果

image

相关文章

网友评论

      本文标题:解决vscode内html内css不提示,jquery代码不提示

      本文链接:https://www.haomeiwen.com/subject/fdbszctx.html