我一直在第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.