如何在IntelliJ IDE中添加bootstrap自动代码完成功能?

时间:2017-03-02 16:02:01

标签: intellij-idea autocomplete bootstrapping

我在IntelliJ IDEA中添加了Bootstrap3插件,并在html页面中添加了css和js链接。但是我无法获得bootstrap类名等的自动完成功能。 我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:2)

我遇到了同样的问题,最终发现了这个问题:https://intellij-support.jetbrains.com/hc/en-us/community/posts/206324479-How-to-activate-autocomplete-with-Bootstrap

技巧是你不能使用cdn传递的css - 你必须在本地引用它。

这行对我有用(html文件在... / resources / templates /和bootstrap .css文件下载到... / resources / static):

<link rel="stylesheet" href="../static/bootstrap.css">

我确实需要等一下才能让intellij先将其编入索引。

希望有所帮助:)

答案 1 :(得分:1)

首选项|语言和框架| JavaScript |图书馆 然后按'+'->附加文件-> bootstrap.min.css->确定