0

好的,所以我希望更改 div.a 中的内容,同时在下面的 div.b 上滚动。就像一个滚动条的图像列表,标题在滚动时显示。

请帮忙,马克

4

1 回答 1

0

这过于简单化,但只是为了给你一个想法。

//jQuery

$(function(){
    $('a#trigger').hover(){function(){
        $('h1')html('<p>first content</p>');
    },function(){
        $('h1').html('<p>second content</p>');
    }};
});
于 2012-05-10T02:02:04.953 回答