Internet Explorer 8错误 - 空白行上的预期标识符,字符串或数字 - JQuery

时间:2013-09-17 21:19:17

标签: javascript internet-explorer-8

我一直在第103行收到“预期的标识符”错误。我知道这可能是错误的昏迷或分号,但我似乎无法看到它。

$('select').each(function () {
            var $this = $(this);
            var numberOfOptions = $this.children('option').length;

            $this.addClass('sHidden');
            $this.wrap('<div class="select"></div>');
            $this.after('<div class="selectStyled"></div>');
            var $styledSelect = $this.next('div.selectStyled');

            $styledSelect.append('<div class="select">' + $this.children('option').eq(0).text() + '</div>');

            var $list = $("<ul/>").addClass('options');

            $styledSelect.append($list); <-- Line 102 so the error is on the next line.

0 个答案:

没有答案