VS2012中奇怪的JavaScript崩溃行为

时间:2013-09-13 08:07:30

标签: javascript visual-studio-2012

Visual Studio 2012为我提供了折叠此功能的可能性(请参阅左侧的“ - ”图标。)

Collapse

有时他会任意决定我不能这样做。

No collapse

有人可以解释为什么以及如何解决它?我想要折叠代码中的每个函数:我可以这样做吗?怎么样?

看起来在我的代码中放置$.get$('selector')$.each调用会导致问题,但由于它看起来像一个随机行为,我无法确定

这是导致问题的一些随机代码:

function ComputeHigherZIndex() {

        var highest = null;

        $('#@(mdi.ContainerDivId)').find('.dynawindow').each(function () {

            var current = $(this).css("z-index");

            if (highest == null || highest < current) {
                highest = current;
            }
        });

        return highest;
    }

0 个答案:

没有答案