Aptana Studio:jQuery代码完成/辅助变量

时间:2013-05-11 18:39:50

标签: javascript jquery aptana code-completion code-assist

在最新的Aptana插件(3.4)中使用jQuery的代码完成/辅助时遇到问题。它似乎无法推断出类型:

(function($) {
    $('p .test').each(function() {
        var $this = $(this);
        $(this).*DOES WORK*
        $this.*DOESN'T WORK*
    });
}(jQuery));

当试图获得由$(this)创建的变量的代码完成时,我没有得到任何帮助:(你有任何建议如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

以下是答案:

(function($) {
    $('p .test').each(function() {
        var ele = $(this);
        $ele = $(this);
        $(this).*DOES WORK*
        ele.*DOES WORK*
        $ele.*DOES WORK*
    });
}(jQuery));