当我尝试编写 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>