html內(nèi)css無提示解決方法:
1、打開vscode的設(shè)置:
2、在用戶設(shè)置中添加下面代碼
"editor.parameterHints": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
如圖
image
jQuery無提示解決方法:
image
在項(xiàng)目根目錄建一個 jsconfig.json
{
"exclude": ["node_modules"],
"typeAcquisition": {
"include": [
"jquery"
]
}
}
效果
image