我在最新的 Aptana 插件 (3.4) 中使用 jQuery 的代码完成/辅助时遇到问题。它似乎无法推断类型:
(function($) {
$('p .test').each(function() {
var $this = $(this);
$(this).*DOES WORK*
$this.*DOESN'T WORK*
});
}(jQuery));
当试图为 $(this) 创建的变量完成代码时,我没有得到任何帮助:(你有什么建议可以解决这个问题吗?