4

当我尝试编写 jquery 时,Webstorm 没有在 jquery 标识符部分显示标识符和类。请帮助我是编程新手,需要良好的智能感知才能工作。它没有显示图像中的 id 和类。我有最新版本。

http://blog.jetbrains.com/webide/2012/08/tips-on-jquery-development-in-webstorm/

这是我的代码

它没有像应有的那样在 # 符号之后显示 ID。

<!DOCTYPE html>
<html>
<head>
    <script>
    $("#")
    </script>
</head>

<body>
<p id="test1">This is a paragraph.</p>
<button id="btn1">Set Text</button>
</body>
</html>
4

1 回答 1

7

确保在此处启用 jQuery 库:

图书馆

另请注意,您需要按Ctrl+ Space,此完成类型是明确的:

使用 ctrl+space

于 2012-11-01T14:01:20.153 回答