Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在脚本标记中创建 javascript 变量的 jsp 页面,但是这些变量在单独的包含的 JavaScript 文件中不能作为自动完成选项使用。
有没有办法启用这个功能?
在您的 javascript 文件的顶部插入以下内容:
/* global yourFirstVariable, youVariable2 */
这也将停止 jslint 检测在定义错误之前使用的变量。
但是没有可用的类型信息 afaik,所以我无法为yourFirstVariable.myProperty. 如果有人知道如何获得该功能......
yourFirstVariable.myProperty