3

我试图做一个简单的 removeClass 和 addClass 来改变 Img 的样式。

    <div id="Pic_Viewer">
        <div id="Main_Pic_Viewer">
                <div class="Not_Selected" >
                    <img src='#' alt="PicURL_1" />
                </div>
                <div class="Not_Selected" >
                    <img src='#' alt="PicURL_2" />
                </div>
        </div>
        <div id="Small_Pic_Viewer">
            <ul>
                <li>
                    <img class="Small_Pic" src'#' alt="PicURL_1" />
                </li>
                <li>
                    <img class="Small_Pic" src='#' alt="PicURL_2" />
                </li>
            </ul>
        </div>
    </div>

我曾尝试在 div 中使用 #Main_Pic_Viewer img 并没有这样做。

js:

$('#Small_Pic_Viewer ul li').click(
        function () {
            var ThisLI = this.firstElementChild.alt;
            var BigImgDiv = $('#Main_Pic_Viewer div');
            var CurDiv;

            for (var i = 0, l = BigImgDiv.length; i < l; i++) {
                CurDiv = BigImgDiv[i];
                if (BigImgDiv[i].children[0].alt === ThisLI) {
                    CurDiv.removeClass('Not_Selected').addClass('Selected');
                } else {
                    CurDiv.removeClass('Selected');
                };
            };
        }
    );

不知道为什么我会收到此错误消息,因为 removeClass() 在其他方法中工作正常。

4

2 回答 2

6

在 jQuery 对象中使用数字索引时,您将获得没有 jQuery 包装器的原始 DOM 元素。

只需将其再次包装在 jQuery 函数中,就可以了:

// ...

CurDiv = $( BigImgDiv[i] );

// ...

@Andreas 在评论中建议的另一个解决方案是使用该eq()方法,这可能是更好的方法:

// ...

CurDiv = BigImgDiv.eq(i);

// ...
于 2013-04-30T06:26:26.443 回答
0

试试这个:http: //jsfiddle.net/Yx5c8/1/

$('#Small_Pic_Viewer ul li').click(function () {
    var ThisLI = this.firstElementChild.alt;
    $('#Main_Pic_Viewer div').each(function () {
        if (this.children[0].alt === ThisLI) {
            $(this).removeClass('Not_Selected').addClass('Selected');
        } else {
            $(this).removeClass('Selected');
        }
    });
});
于 2013-04-30T06:38:39.727 回答