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



我在最新的Aptana插件(3.4)中使用jQuery的代码完成/辅助有问题。它似乎不能推断类型:

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

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

答案如下:

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

相关内容

  • 没有找到相关文章

最新更新