Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以我希望更改 div.a 中的内容,同时在下面的 div.b 上滚动。就像一个滚动条的图像列表,标题在滚动时显示。
请帮忙,马克
这过于简单化,但只是为了给你一个想法。
//jQuery
$(function(){ $('a#trigger').hover(){function(){ $('h1')html('<p>first content</p>'); },function(){ $('h1').html('<p>second content</p>'); }}; });